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.



1420
1421
1422
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1420

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


1407
1408
1409
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1407

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)


1412
1413
1414
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1412

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)


1418
1419
1420
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1418

def number_of_requests
  @number_of_requests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1425
1426
1427
1428
1429
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1425

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