Class: Google::Apis::DfareportingV3_3::AccountPermission

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

Overview

AccountPermissions contains information about a particular account permission. Some features of Campaign Manager require an account permission to be present in the account.

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) ⇒ AccountPermission

Returns a new instance of AccountPermission.



314
315
316
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 314

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

Instance Attribute Details

#account_profilesArray<String>

Account profiles associated with this account permission. Possible values are:

  • "ACCOUNT_PROFILE_BASIC"
  • "ACCOUNT_PROFILE_STANDARD" Corresponds to the JSON property accountProfiles

Returns:

  • (Array<String>)


286
287
288
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 286

def 
  @account_profiles
end

#idFixnum

ID of this account permission. Corresponds to the JSON property id

Returns:

  • (Fixnum)


291
292
293
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 291

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#accountPermission". Corresponds to the JSON property kind

Returns:

  • (String)


297
298
299
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 297

def kind
  @kind
end

#levelString

Administrative level required to enable this account permission. Corresponds to the JSON property level

Returns:

  • (String)


302
303
304
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 302

def level
  @level
end

#nameString

Name of this account permission. Corresponds to the JSON property name

Returns:

  • (String)


307
308
309
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 307

def name
  @name
end

#permission_group_idFixnum

Permission group of this account permission. Corresponds to the JSON property permissionGroupId

Returns:

  • (Fixnum)


312
313
314
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 312

def permission_group_id
  @permission_group_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



319
320
321
322
323
324
325
326
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 319

def update!(**args)
  @account_profiles = args[:account_profiles] if args.key?(:account_profiles)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @level = args[:level] if args.key?(:level)
  @name = args[:name] if args.key?(:name)
  @permission_group_id = args[:permission_group_id] if args.key?(:permission_group_id)
end