# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Spatio.Model.ConnectedAppItem do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:client_id,
:client_name,
:logo_uri,
:client_uri,
:policy_uri,
:tos_uri,
:scopes,
:scope_labels,
:granted_at
]
@type t :: %__MODULE__{
:client_id => String.t,
:client_name => String.t,
:logo_uri => String.t | nil,
:client_uri => String.t | nil,
:policy_uri => String.t | nil,
:tos_uri => String.t | nil,
:scopes => [String.t],
:scope_labels => [String.t],
:granted_at => DateTime.t
}
def decode(value) do
value
end
end