Module Values.DeleteProfileObjectRequestSource

Removes an object associated with a profile of a given ProfileObjectType.

Sourcetype nonrec t = {
  1. profileId : Uuid.t;
    (*

    The unique identifier of a customer profile.

    *)
  2. profileObjectUniqueKey : String1To255.t;
    (*

    The unique identifier of the profile object generated by the service.

    *)
  3. objectTypeName : TypeName.t;
    (*

    The name of the profile object type.

    *)
  4. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
}
Sourceval context_ : string
Sourceval make : profileId:Uuid.t -> profileObjectUniqueKey:String1To255.t -> objectTypeName:TypeName.t -> domainName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.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