Module Values.ProjectDetailsSource

Contains details about the project associated with the Engagement Invitation, including the business problem and expected outcomes.

Sourcetype nonrec t = {
  1. businessProblem : EngagementCustomerBusinessProblem.t;
    (*

    Describes the business problem that the project aims to solve. This information is crucial for understanding the project’s goals and objectives.

    *)
  2. title : ProjectDetailsTitleString.t;
    (*

    Specifies the title of the project. This title helps partners quickly identify and understand the focus of the project.

    *)
  3. targetCompletionDate : Date.t;
    (*

    Specifies the estimated date of project completion. This field helps track the project timeline and manage expectations.

    *)
  4. expectedCustomerSpend : ExpectedCustomerSpendList.t;
    (*

    Contains revenue estimates for the partner related to the project. This field provides an idea of the financial potential of the opportunity for the partner.

    *)
}
Sourceval context_ : string
Sourceval make : businessProblem:EngagementCustomerBusinessProblem.t -> title:ProjectDetailsTitleString.t -> targetCompletionDate:Date.t -> expectedCustomerSpend:ExpectedCustomerSpendList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of Amount.t ]) list ] list | `String of EngagementCustomerBusinessProblem.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