Module Values.BusinessChainSource

A businesschain is a chain of businesses that belong to the same brand. For example 7-11.

Sourcetype nonrec t = {
  1. name : BusinessChainNameString.t option;
    (*

    The business chain name.

    *)
  2. id : BusinessChainIdString.t option;
    (*

    The Business Chain Id.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BusinessChainNameString.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