Increase.OAuthConnections.OAuthConnection (Increase v1.0.0)

Copy Markdown View Source

When a user authorizes your OAuth application, an OAuth Connection object is created. Learn more about OAuth here.

Fields

  • id - The OAuth Connection's identifier.
  • created_at - The ISO 8601 timestamp when the OAuth Connection was created.
  • deleted_at - The ISO 8601 timestamp when the OAuth Connection was deleted.
  • group_id - The identifier of the Group that has authorized your OAuth application.
  • oauth_application_id - The identifier of the OAuth application this connection is for.
  • status - Whether the connection is active.
  • type - A constant representing the object's type. For this resource it will always be oauth_connection.

Summary

Types

t()

@type t() :: %Increase.OAuthConnections.OAuthConnection{
  created_at: DateTime.t(),
  deleted_at: DateTime.t() | nil,
  group_id: String.t(),
  id: String.t(),
  oauth_application_id: String.t(),
  status: String.t(),
  type: String.t()
}