Module Values.InvoiceProfileSource

Contains high-level information about the invoice receiver.

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

    The account ID the invoice profile is generated for.

    *)
  2. receiverName : BasicStringWithoutSpace.t option;
    (*

    The name of the person receiving the invoice profile.

    *)
  3. receiverAddress : ReceiverAddress.t option;
    (*

    The address of the receiver that will be printed on the invoice.

    *)
  4. receiverEmail : SensitiveBasicStringWithoutSpace.t option;
    (*

    The email address for the invoice profile receiver.

    *)
  5. issuer : BasicStringWithoutSpace.t option;
    (*

    This specifies the issuing entity of the invoice.

    *)
  6. taxRegistrationNumber : SensitiveBasicStringWithoutSpace.t option;
    (*

    Your Tax Registration Number (TRN) information.

    *)
}
Sourceval make : ?accountId:??? -> ?receiverName:??? -> ?receiverAddress:??? -> ?receiverEmail:??? -> ?issuer:??? -> ?taxRegistrationNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountIdString.t | `Structure of (string * [> `String of BasicString.t ]) 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