class Google::Apis::DfareportingV3_3::AccountPermission
AccountPermissions contains information about a particular account permission. Some features of Campaign
Manager require an account permission to be present in the account.
Attributes
Account
profiles associated with this account permission. Possible values are:
-
“ACCOUNT_PROFILE_BASIC” - “ACCOUNT_PROFILE_STANDARD”
Corresponds to the JSON property `accountProfiles` @return [Array<String>]
ID of this account permission. Corresponds to the JSON property `id` @return [Fixnum]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#accountPermission”. Corresponds to the JSON property `kind` @return [String]
Administrative level required to enable this account permission. Corresponds to the JSON property `level` @return [String]
Name of this account permission. Corresponds to the JSON property `name` @return [String]
Permission group of this account permission. Corresponds to the JSON property `permissionGroupId` @return [Fixnum]
Public Class Methods
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 258 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 263 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