Module Values.AddressDimensionSource

Object that segments on Customer Profile's address object.

Sourcetype nonrec t = {
  1. city : ProfileDimension.t option;
    (*

    The city belonging to the address.

    *)
  2. country : ProfileDimension.t option;
    (*

    The country belonging to the address.

    *)
  3. county : ProfileDimension.t option;
    (*

    The county belonging to the address.

    *)
  4. postalCode : ProfileDimension.t option;
    (*

    The postal code belonging to the address.

    *)
  5. province : ProfileDimension.t option;
    (*

    The province belonging to the address.

    *)
  6. state : ProfileDimension.t option;
    (*

    The state belonging to the address.

    *)
}
Sourceval make : ?city:??? -> ?country:??? -> ?county:??? -> ?postalCode:??? -> ?province:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String1To255.t ] 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