Increase.OAuthApplications.OAuthApplication (Increase v1.0.0)

Copy Markdown View Source

An OAuth Application lets you build an application for others to use with their Increase data. You can create an OAuth Application via the Dashboard and read information about it with the API. Learn more about OAuth here.

Fields

  • id - The OAuth Application's identifier.
  • client_id - The OAuth Application's client_id. Use this to authenticate with the OAuth Application.
  • created_at - The ISO 8601 timestamp when the OAuth Application was created.
  • deleted_at - The ISO 8601 timestamp when the OAuth Application was deleted.
  • name - The name you chose for this OAuth Application.
  • status - Whether the application is active.
  • type - A constant representing the object's type. For this resource it will always be oauth_application.

Summary

Types

t()

@type t() :: %Increase.OAuthApplications.OAuthApplication{
  client_id: String.t(),
  created_at: DateTime.t(),
  deleted_at: DateTime.t() | nil,
  id: String.t(),
  name: String.t() | nil,
  status: String.t(),
  type: String.t()
}