Module Values.AccountDetailsSource

An object with your accountId and TRN information.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    List of unique account identifiers.

    *)
  2. accountMetaData : AccountMetaData.t option;
    (*

    The meta data information associated with the account.

    *)
  3. taxInheritanceDetails : TaxInheritanceDetails.t option;
    (*

    Tax inheritance information associated with the account.

    *)
  4. taxRegistration : TaxRegistrationWithJurisdiction.t option;
    (*

    Your TRN information. Instead of having full legal address, here TRN information will have jurisdiction details (for example, country code and state/region/province if applicable).

    *)
}
Sourceval make : ?accountId:??? -> ?accountMetaData:??? -> ?taxInheritanceDetails:??? -> ?taxRegistration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TaxDocumentAccessToken.t ]) list ] list | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `String of CountryCode.t ]) list ]) list | `String of AccountName.t | `Structure of (string * [> `String of AddressLine1.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Enum of string ] list | `String of CcmCode.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t