Class CodeLinkInfoResponse
Information on the requested code
Inherited Members
Namespace: Unity.Services.Apis.PlayerAuthentication
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "CodeLinkInfoResponse")]
[Preserve]
public class CodeLinkInfoResponse
Constructors
CodeLinkInfoResponse(string, string)
Initializes a new instance of the Code
Declaration
[Preserve]
public CodeLinkInfoResponse(string identifier = null, string expiration = null)
Parameters
Type | Name | Description |
---|---|---|
string | identifier | Human-readable string to identify the requester device.. |
string | expiration | The timestamp for when the code is no longer valid in unix time since epoch. (required). |
Properties
Expiration
The timestamp for when the code is no longer valid in unix time since epoch.
Declaration
[DataMember(Name = "expiration", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Expiration { get; set; }
Property Value
Type | Description |
---|---|
string | The timestamp for when the code is no longer valid in unix time since epoch. |
Identifier
Human-readable string to identify the requester device.
Declaration
[DataMember(Name = "identifier", EmitDefaultValue = false)]
[Preserve]
public string Identifier { get; set; }
Property Value
Type | Description |
---|---|
string | Human-readable string to identify the requester device. |