Module Values.ExpenseGroupPropertySource

Shows the group that a certain key belongs to. This helps differentiate between names and addresses for different organizations, that can be hard to determine via JSON response.

Sourcetype nonrec t = {
  1. types : StringList.t option;
    (*

    Informs you on whether the expense group is a name or an address.

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

    Provides a group Id number, which will be the same for each in the group.

    *)
}
Sourceval make : ?types:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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