Class: Google::Apis::AccessapprovalV1::AccessReason
- Inherits:
-
Object
- Object
- Google::Apis::AccessapprovalV1::AccessReason
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/accessapproval_v1/classes.rb,
generated/google/apis/accessapproval_v1/representations.rb,
generated/google/apis/accessapproval_v1/representations.rb
Instance Attribute Summary collapse
-
#detail ⇒ String
More detail about certain reason types.
-
#type ⇒ String
Type of access justification.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccessReason
constructor
A new instance of AccessReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccessReason
Returns a new instance of AccessReason.
129 130 131 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 129 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detail ⇒ String
More detail about certain reason types. See comments for each type above.
Corresponds to the JSON property detail
122 123 124 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 122 def detail @detail end |
#type ⇒ String
Type of access justification.
Corresponds to the JSON property type
127 128 129 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 127 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
134 135 136 137 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 134 def update!(**args) @detail = args[:detail] if args.key?(:detail) @type = args[:type] if args.key?(:type) end |