Class: Google::Apis::AlertcenterV1beta1::RequestInfo

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

Overview

Requests for one application that needs default SQL setup.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RequestInfo

Returns a new instance of RequestInfo.



1726
1727
1728
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1726

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

Instance Attribute Details

#app_developer_emailArray<String>

List of app developers who triggered notifications for above application. Corresponds to the JSON property appDeveloperEmail

Returns:

  • (Array<String>)


1713
1714
1715
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1713

def app_developer_email
  @app_developer_email
end

#app_keyString

Required. The application that requires the SQL setup. Corresponds to the JSON property appKey

Returns:

  • (String)


1718
1719
1720
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1718

def app_key
  @app_key
end

#number_of_requestsFixnum

Required. Number of requests sent for this application to set up default SQL instance. Corresponds to the JSON property numberOfRequests

Returns:

  • (Fixnum)


1724
1725
1726
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1724

def number_of_requests
  @number_of_requests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1731
1732
1733
1734
1735
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1731

def update!(**args)
  @app_developer_email = args[:app_developer_email] if args.key?(:app_developer_email)
  @app_key = args[:app_key] if args.key?(:app_key)
  @number_of_requests = args[:number_of_requests] if args.key?(:number_of_requests)
end