Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppRequest

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

Overview

Details of an app installation request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1ChromeAppRequest

Returns a new instance of GoogleChromeManagementV1ChromeAppRequest.



663
664
665
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 663

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

Instance Attribute Details

#app_detailsString

Output only. Format: app_details=customers/customer_id/apps/chrome/app_id Corresponds to the JSON property appDetails

Returns:

  • (String)


629
630
631
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 629

def app_details
  @app_details
end

#app_idString

Output only. Unique store identifier for the app. Example: " gmbmikajjgmnabiglmofipeabaddhgne" for the Save to Google Drive Chrome extension. Corresponds to the JSON property appId

Returns:

  • (String)


636
637
638
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 636

def app_id
  @app_id
end

#detail_uriString

Output only. The uri for the detail page of the item. Corresponds to the JSON property detailUri

Returns:

  • (String)


641
642
643
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 641

def detail_uri
  @detail_uri
end

#display_nameString

Output only. App's display name. Corresponds to the JSON property displayName

Returns:

  • (String)


646
647
648
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 646

def display_name
  @display_name
end

#icon_uriString

Output only. A link to an image that can be used as an icon for the product. Corresponds to the JSON property iconUri

Returns:

  • (String)


651
652
653
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 651

def icon_uri
  @icon_uri
end

#latest_request_timeString

Output only. The timestamp of the most recently made request for this app. Corresponds to the JSON property latestRequestTime

Returns:

  • (String)


656
657
658
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 656

def latest_request_time
  @latest_request_time
end

#request_countFixnum

Output only. Total count of requests for this app. Corresponds to the JSON property requestCount

Returns:

  • (Fixnum)


661
662
663
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 661

def request_count
  @request_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



668
669
670
671
672
673
674
675
676
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 668

def update!(**args)
  @app_details = args[:app_details] if args.key?(:app_details)
  @app_id = args[:app_id] if args.key?(:app_id)
  @detail_uri = args[:detail_uri] if args.key?(:detail_uri)
  @display_name = args[:display_name] if args.key?(:display_name)
  @icon_uri = args[:icon_uri] if args.key?(:icon_uri)
  @latest_request_time = args[:latest_request_time] if args.key?(:latest_request_time)
  @request_count = args[:request_count] if args.key?(:request_count)
end