Class: Google::Apis::DfareportingV2_7::UserRolePermission
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_7::UserRolePermission
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_7/classes.rb,
generated/google/apis/dfareporting_v2_7/representations.rb,
generated/google/apis/dfareporting_v2_7/representations.rb
Overview
Contains properties of a user role permission.
Instance Attribute Summary collapse
-
#availability ⇒ String
Levels of availability for a user role permission.
-
#id ⇒ Fixnum
ID of this user role permission.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Name of this user role permission.
-
#permission_group_id ⇒ Fixnum
ID of the permission group that this user role permission belongs to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserRolePermission
constructor
A new instance of UserRolePermission.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserRolePermission
Returns a new instance of UserRolePermission
11624 11625 11626 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11624 def initialize(**args) update!(**args) end |
Instance Attribute Details
#availability ⇒ String
Levels of availability for a user role permission.
Corresponds to the JSON property availability
11601 11602 11603 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11601 def availability @availability end |
#id ⇒ Fixnum
ID of this user role permission.
Corresponds to the JSON property id
11606 11607 11608 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11606 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#userRolePermission".
Corresponds to the JSON property kind
11612 11613 11614 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11612 def kind @kind end |
#name ⇒ String
Name of this user role permission.
Corresponds to the JSON property name
11617 11618 11619 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11617 def name @name end |
#permission_group_id ⇒ Fixnum
ID of the permission group that this user role permission belongs to.
Corresponds to the JSON property permissionGroupId
11622 11623 11624 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11622 def @permission_group_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11629 11630 11631 11632 11633 11634 11635 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 11629 def update!(**args) @availability = args[:availability] if args.key?(:availability) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @permission_group_id = args[:permission_group_id] if args.key?(:permission_group_id) end |