Class: Google::Apis::AlertcenterV1beta1::ResourceInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResourceInfo

Returns a new instance of ResourceInfo.



1280
1281
1282
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1280

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

Instance Attribute Details

#document_idString

Drive file ID. Corresponds to the JSON property documentId

Returns:

  • (String)


1273
1274
1275
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1273

def document_id
  @document_id
end

#resource_titleString

Title of the resource, e.g. email subject, or document title. Corresponds to the JSON property resourceTitle

Returns:

  • (String)


1278
1279
1280
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1278

def resource_title
  @resource_title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1285
1286
1287
1288
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1285

def update!(**args)
  @document_id = args[:document_id] if args.key?(:document_id)
  @resource_title = args[:resource_title] if args.key?(:resource_title)
end