Class UnlinkExternalIdRequest
The request body for unlink external id.
Inherited Members
Namespace: Unity.Services.Apis.PlayerAuthentication
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "UnlinkExternalIdRequest")]
[Preserve]
public class UnlinkExternalIdRequest
Constructors
UnlinkExternalIdRequest(string)
Initializes a new instance of the UnlinkExternalIdRequest class.
Declaration
[Preserve]
public UnlinkExternalIdRequest(string externalId = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | externalId | The external Id to unlink from the player account. (required). |
Properties
ExternalId
The external Id to unlink from the player account.
Declaration
[DataMember(Name = "externalId", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string ExternalId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The external Id to unlink from the player account. |