Module Values.UpdateAddressSource

Updates associated with the address properties of a customer profile.

Sourcetype nonrec t = {
  1. address1 : String0To255.t option;
    (*

    The first line of a customer address.

    *)
  2. address2 : String0To255.t option;
    (*

    The second line of a customer address.

    *)
  3. address3 : String0To255.t option;
    (*

    The third line of a customer address.

    *)
  4. address4 : String0To255.t option;
    (*

    The fourth line of a customer address.

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

    The city in which a customer lives.

    *)
  6. county : String0To255.t option;
    (*

    The county in which a customer lives.

    *)
  7. state : String0To255.t option;
    (*

    The state in which a customer lives.

    *)
  8. province : String0To255.t option;
    (*

    The province in which a customer lives.

    *)
  9. country : String0To255.t option;
    (*

    The country in which a customer lives.

    *)
  10. postalCode : String0To255.t option;
    (*

    The postal code of a customer address.

    *)
}
Sourceval make : ?address1:??? -> ?address2:??? -> ?address3:??? -> ?address4:??? -> ?city:??? -> ?county:??? -> ?state:??? -> ?province:??? -> ?country:??? -> ?postalCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String0To255.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