Class: Google::Apis::AlertcenterV1beta1::ResourceInfo
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::ResourceInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb
Overview
Proto that contains resource information.
Instance Attribute Summary collapse
-
#document_id ⇒ String
Drive file ID.
-
#resource_title ⇒ String
Title of the resource, for example email subject, or document title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourceInfo
constructor
A new instance of ResourceInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourceInfo
Returns a new instance of ResourceInfo.
1187 1188 1189 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1187 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document_id ⇒ String
Drive file ID.
Corresponds to the JSON property documentId
1180 1181 1182 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1180 def document_id @document_id end |
#resource_title ⇒ String
Title of the resource, for example email subject, or document title.
Corresponds to the JSON property resourceTitle
1185 1186 1187 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1185 def resource_title @resource_title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1192 1193 1194 1195 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1192 def update!(**args) @document_id = args[:document_id] if args.key?(:document_id) @resource_title = args[:resource_title] if args.key?(:resource_title) end |