Module Values.FreeTrialFeatureConfigurationResultSource

Contains information about the free trial period for a feature.

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

    The name of the feature for which the free trial is configured.

    *)
  2. freeTrialDaysRemaining : Integer.t option;
    (*

    The number of the remaining free trial days for the feature.

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