OBJECT

TF_Account

link GraphQL Schema definition

  • type TF_Account implements Account {
  • id: ID!
  • # Email address for user. Will be used as display name of user and for login
  • email: String!
  • # Tenant id that the user is a member of
  • tenantId: String!
  • # The description of the account
  • description: String
  • # Public key that uniquely identifies the account
  • public_key: String!
  • # Thresholds for the account
  • thresholds: Thresholds!
  • # Asset balances for the account
  • balances: [Balance]!
  • # Signers for the account
  • signers: [Signer]!
  • # Accounts may optionally have a home domain specified. This allows an account to
  • # specify where is the main provider for that account.
  • home_domain: String
  • # Flags for the account
  • flags: Flags!
  • # Creation date of the account
  • createdAt: Date!
  • # Last modified date of the account
  • updatedAt: Date!
  • }

link Require by

This element is not required by anyone