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.



1451
1452
1453
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1451

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


1438
1439
1440
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1438

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)


1443
1444
1445
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1443

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)


1449
1450
1451
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1449

def number_of_requests
  @number_of_requests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1456
1457
1458
1459
1460
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1456

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