Module Values.RenewalSettingsSource

The Renewal settings for Reservations

Sourcetype nonrec t = {
  1. automaticRenewal : ReservationAutomaticRenewal.t option;
    (*

    Automatic renewal status for the reservation

    *)
  2. renewalCount : int option;
    (*

    Count for the reservation renewal

    *)
}
Sourceval make : ?automaticRenewal:??? -> ?renewalCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int ]) 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