Module Values.GetRemainingFreeTrialDaysResponseSource

Provides the number of days left for each data source used in the free trial period.

Sourcetype nonrec t = {
  1. accounts : AccountFreeTrialInfos.t option;
    (*

    The member accounts which were included in a request and were processed successfully.

    *)
  2. unprocessedAccounts : UnprocessedAccounts.t option;
    (*

    The member account that was included in a request but for which the request could not be processed.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?accounts:??? -> ?unprocessedAccounts:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalServerErrorException of InternalServerErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalServerErrorException of InternalServerErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ]) list ]) list ] list ]) 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