Module Values.ReceiverAddressSource

The details of the address associated with the receiver.

Sourcetype nonrec t = {
  1. addressLine1 : BasicString.t option;
    (*

    The first line of the address.

    *)
  2. addressLine2 : BasicString.t option;
    (*

    The second line of the address, if applicable.

    *)
  3. addressLine3 : BasicString.t option;
    (*

    The third line of the address, if applicable.

    *)
  4. districtOrCounty : BasicString.t option;
    (*

    The district or country the address is located in.

    *)
  5. city : BasicString.t option;
    (*

    The city that the address is in.

    *)
  6. stateOrRegion : BasicString.t option;
    (*

    The state, region, or province the address is located.

    *)
  7. countryCode : BasicString.t option;
    (*

    The country code for the country the address is in.

    *)
  8. companyName : BasicString.t option;
    (*

    A unique company name.

    *)
  9. postalCode : BasicString.t option;
    (*

    The postal code associated with the address.

    *)
}
Sourceval make : ?addressLine1:??? -> ?addressLine2:??? -> ?addressLine3:??? -> ?districtOrCounty:??? -> ?city:??? -> ?stateOrRegion:??? -> ?countryCode:??? -> ?companyName:??? -> ?postalCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BasicString.t ]) 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