Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedDocument

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Data for rendering a document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteSharedDocument

Returns a new instance of AppsDynamiteSharedDocument.



1704
1705
1706
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1704

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

Instance Attribute Details

#file_idString

Unique file ID. Corresponds to the JSON property fileId

Returns:

  • (String)


1677
1678
1679
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1677

def file_id
  @file_id
end

#justificationGoogle::Apis::CloudsearchV1::AppsDynamiteSharedJustification

Data for rendering a justification for a document. Corresponds to the JSON property justification



1682
1683
1684
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1682

def justification
  @justification
end

#last_modified_timeString

Time the document was last modified. Corresponds to the JSON property lastModifiedTime

Returns:

  • (String)


1687
1688
1689
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1687

def last_modified_time
  @last_modified_time
end

#mime_typeString

Used to determine which icon to render (e.g. docs, slides, sheets) Corresponds to the JSON property mimeType

Returns:

  • (String)


1692
1693
1694
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1692

def mime_type
  @mime_type
end

#titleString

Title of the document. Corresponds to the JSON property title

Returns:

  • (String)


1697
1698
1699
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1697

def title
  @title
end

#urlString

URL of the document. Corresponds to the JSON property url

Returns:

  • (String)


1702
1703
1704
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1702

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1709
1710
1711
1712
1713
1714
1715
1716
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1709

def update!(**args)
  @file_id = args[:file_id] if args.key?(:file_id)
  @justification = args[:justification] if args.key?(:justification)
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @title = args[:title] if args.key?(:title)
  @url = args[:url] if args.key?(:url)
end