Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::ScreenshotFile

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScreenshotFile

Returns a new instance of ScreenshotFile.



1670
1671
1672
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1670

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

Instance Attribute Details

#create_timeDateTime

Date and time the file was created Corresponds to the JSON property createTime

Returns:

  • (DateTime)


1653
1654
1655
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1653

def create_time
  @create_time
end

#download_urlString

File download URL Corresponds to the JSON property downloadUrl

Returns:

  • (String)


1658
1659
1660
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1658

def download_url
  @download_url
end

#nameString

File name Corresponds to the JSON property name

Returns:

  • (String)


1663
1664
1665
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1663

def name
  @name
end

#typeString

File type Corresponds to the JSON property type

Returns:

  • (String)


1668
1669
1670
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1668

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1675
1676
1677
1678
1679
1680
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1675

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @download_url = args[:download_url] if args.key?(:download_url)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end