Module Values.TaskDetailsSource

Contains detailed information about a profile update task including the changes to be made.

Sourcetype nonrec t = {
  1. displayName : UnicodeString.t;
    (*

    The updated display name for the partner profile.

    *)
  2. description : TaskDetailsDescriptionString.t;
    (*

    The updated description for the partner profile.

    *)
  3. websiteUrl : Url.t;
    (*

    The updated website URL for the partner profile.

    *)
  4. logoUrl : Url.t;
    (*

    The updated logo URL for the partner profile.

    *)
  5. primarySolutionType : PrimarySolutionType.t;
    (*

    The updated primary solution type for the partner profile.

    *)
  6. industrySegments : IndustrySegmentList.t;
    (*

    The updated industry segments for the partner profile.

    *)
  7. translationSourceLocale : Locale.t;
    (*

    The updated translation source locale for the partner profile.

    *)
  8. localizedContents : LocalizedContentList.t option;
    (*

    The updated localized content for the partner profile.

    *)
}
Sourceval context_ : string
Sourceval make : ?localizedContents:??? -> displayName:UnicodeString.t -> description:TaskDetailsDescriptionString.t -> websiteUrl:Url.t -> logoUrl:Url.t -> primarySolutionType:PrimarySolutionType.t -> industrySegments:IndustrySegmentList.t -> translationSourceLocale:Locale.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of UnicodeString.t ]) list ] list | `String of UnicodeString.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