PolarExpress.Schemas.MemberSession (polar_express v0.1.5)

Copy Markdown View Source

MemberSession

A member session that can be used to authenticate as a member in the customer portal.

Summary

Types

t()

@type t() :: %PolarExpress.Schemas.MemberSession{
  created_at: DateTime.t() | nil,
  customer: PolarExpress.Schemas.Customer.t() | nil,
  customer_id: String.t() | nil,
  expires_at: DateTime.t() | nil,
  id: String.t() | nil,
  member: PolarExpress.Schemas.Member.t() | nil,
  member_id: String.t() | nil,
  member_portal_url: String.t() | nil,
  modified_at: DateTime.t() | nil,
  return_url: String.t() | nil,
  token: String.t() | nil
}
  • created_at - Creation timestamp of the object. Format: date-time.
  • customer
  • customer_id - Format: uuid4.
  • expires_at - Format: date-time.
  • id - The ID of the object. Format: uuid4.
  • member
  • member_id - Format: uuid4.
  • member_portal_url
  • modified_at - Last modification timestamp of the object. Nullable.
  • return_url - Nullable.
  • token

Functions

schema_name()