Show / Hide Table of Contents

Class UserProfile

Represents a UserProfile resource.

Inheritance
System.Object
UserProfile
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dfareporting.v3_2.Data
Assembly: Google.Apis.Dfareporting.v3_2.dll
Syntax
public class UserProfile : IDirectResponseSchema

Properties

AccountId

The account ID to which this profile belongs.

Declaration
[JsonProperty("accountId")]
public virtual long? AccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

AccountName

The account name this profile belongs to.

Declaration
[JsonProperty("accountName")]
public virtual string AccountName { get; set; }
Property Value
Type Description
System.String

ETag

The eTag of this response for caching purposes.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

The kind of resource this is, in this case dfareporting#userProfile.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

ProfileId

The unique ID of the user profile.

Declaration
[JsonProperty("profileId")]
public virtual long? ProfileId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SubAccountId

The sub account ID this profile belongs to if applicable.

Declaration
[JsonProperty("subAccountId")]
public virtual long? SubAccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SubAccountName

The sub account name this profile belongs to if applicable.

Declaration
[JsonProperty("subAccountName")]
public virtual string SubAccountName { get; set; }
Property Value
Type Description
System.String

UserName

The user name.

Declaration
[JsonProperty("userName")]
public virtual string UserName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top