Packages

Elixir client for the S2 durable stream API

Current section

Files

Jump to
s2_client lib s2 schemas issue_access_token_response.ex
Raw

lib/s2/schemas/issue_access_token_response.ex

defmodule S2.IssueAccessTokenResponse do
@moduledoc """
Provides struct and type for a IssueAccessTokenResponse
"""
@type t :: %__MODULE__{access_token: String.t()}
defstruct [:access_token]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[access_token: :string]
end
end