Module Values.OfferingSource

Represents the metadata of a device offering.

Sourcetype nonrec t = {
  1. id : OfferingIdentifier.t option;
    (*

    The ID that corresponds to a device offering.

    *)
  2. description : Message.t option;
    (*

    A string that describes the offering.

    *)
  3. type_ : OfferingType.t option;
    (*

    The type of offering (for example, RECURRING) for a device.

    *)
  4. platform : DevicePlatform.t option;
    (*

    The platform of the device (for example, ANDROID or IOS).

    *)
  5. recurringCharges : RecurringCharges.t option;
    (*

    Specifies whether there are recurring charges for the offering.

    *)
}
Sourceval make : ?id:??? -> ?description:??? -> ?type_:??? -> ?platform:??? -> ?recurringCharges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of Double.t | `Enum of string ]) list ]) list ] list | `String of OfferingIdentifier.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