Show / Hide Table of Contents

Class AssignedUserRole

A single assigned user role, which defines a user's authorized interaction with a specified partner or advertiser.

Inheritance
System.Object
AssignedUserRole
Implements
Google.Apis.Requests.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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class AssignedUserRole : IDirectResponseSchema

Properties

AdvertiserId

The ID of the advertiser that the assigend user role applies to.

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

AssignedUserRoleId

Output only. The ID of the assigned user role.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

PartnerId

The ID of the partner that the assigned user role applies to.

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

UserRole

Required. The user role to assign to a user for the entity.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top