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.



1603
1604
1605
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1603

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>)


1590
1591
1592
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1590

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)


1595
1596
1597
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1595

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)


1601
1602
1603
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1601

def number_of_requests
  @number_of_requests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1608
1609
1610
1611
1612
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1608

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