Module Values.ExpectedContractDurationSource

The expected duration of a partner's contract with the customer. Used to convert Total Contract Value (TCV) to Monthly Recurring Revenue (MRR) for opportunity dealsizing calculations.

Sourcetype nonrec t = {
  1. term : ExpectedContractDurationTerm.t;
    (*

    The unit of measurement for the contract duration value. Currently accepts only Months.

    *)
  2. value : String_.t;
    (*

    A String representation of the contract duration as an integer, expressed in the unit defined by Term. Valid values range from 1 to 144.

    *)
}
Sourceval context_ : string
Sourceval make : term:ExpectedContractDurationTerm.t -> value:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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