Class: Google::Apis::DfareportingV3_4::UserProfile

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb

Overview

Represents a UserProfile resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserProfile

Returns a new instance of UserProfile.



12295
12296
12297
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12295

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idFixnum

The account ID to which this profile belongs. Corresponds to the JSON property accountId

Returns:

  • (Fixnum)


12258
12259
12260
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12258

def 
  @account_id
end

#account_nameString

The account name this profile belongs to. Corresponds to the JSON property accountName

Returns:

  • (String)


12263
12264
12265
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12263

def 
  @account_name
end

#etagString

The eTag of this response for caching purposes. Corresponds to the JSON property etag

Returns:

  • (String)


12268
12269
12270
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12268

def etag
  @etag
end

#kindString

The kind of resource this is, in this case dfareporting#userProfile. Corresponds to the JSON property kind

Returns:

  • (String)


12273
12274
12275
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12273

def kind
  @kind
end

#profile_idFixnum

The unique ID of the user profile. Corresponds to the JSON property profileId

Returns:

  • (Fixnum)


12278
12279
12280
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12278

def profile_id
  @profile_id
end

#sub_account_idFixnum

The sub account ID this profile belongs to if applicable. Corresponds to the JSON property subAccountId

Returns:

  • (Fixnum)


12283
12284
12285
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12283

def 
  @sub_account_id
end

#sub_account_nameString

The sub account name this profile belongs to if applicable. Corresponds to the JSON property subAccountName

Returns:

  • (String)


12288
12289
12290
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12288

def 
  @sub_account_name
end

#user_nameString

The user name. Corresponds to the JSON property userName

Returns:

  • (String)


12293
12294
12295
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12293

def user_name
  @user_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12300

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @account_name = args[:account_name] if args.key?(:account_name)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @profile_id = args[:profile_id] if args.key?(:profile_id)
  @sub_account_id = args[:sub_account_id] if args.key?(:sub_account_id)
  @sub_account_name = args[:sub_account_name] if args.key?(:sub_account_name)
  @user_name = args[:user_name] if args.key?(:user_name)
end