AddressStatus

open_in_new

GraphQL Schema definition

  • enum AddressStatus {
  • # No information about the address has been set.
  • empty
  • # Some address information has been set but it could not be parsed
  • # into components and only the `address` field of address will be populated.
  • raw
  • # Some or all address information has been set and parsed into components
  • # but the address has not been verified to exist.
  • parsed
  • # The full address has been set, parsed and verified to exist.
  • verified
  • }