Class ExtendedUser
ExtendedUser
Inherited Members
Namespace: Unity.Services.Apis.Friends
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "ExtendedUser")]
[Preserve]
public class ExtendedUser
Constructors
ExtendedUser(string, UserPresence, UserProfile)
Initializes a new instance of the Extended
Declaration
[Preserve]
public ExtendedUser(string id = null, UserPresence presence = null, UserProfile profile = null)
Parameters
Type | Name | Description |
---|---|---|
string | id | id (required). |
User |
presence | presence. |
User |
profile | profile. |
Properties
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Presence
Gets or Sets Presence
Declaration
[DataMember(Name = "presence", EmitDefaultValue = false)]
[Preserve]
public UserPresence Presence { get; set; }
Property Value
Type | Description |
---|---|
User |
Profile
Gets or Sets Profile
Declaration
[DataMember(Name = "profile", EmitDefaultValue = false)]
[Preserve]
public UserProfile Profile { get; set; }
Property Value
Type | Description |
---|---|
User |