Show / Hide Table of Contents

Class UserProfile

A UserProfile resource lets you list all DFA user profiles that are associated with a Google user account. The profile_id needs to be specified in other API requests.

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_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.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

Etag of this resource.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "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
In This Article
Back to top