Class: Google::Apis::ScriptV1::ListDeploymentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::ListDeploymentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb
Overview
Response with the list of deployments for the specified Apps Script project.
Instance Attribute Summary collapse
-
#deployments ⇒ Array<Google::Apis::ScriptV1::Deployment>
The list of deployments.
-
#next_page_token ⇒ String
The token that can be used in the next call to get the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeploymentsResponse
constructor
A new instance of ListDeploymentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDeploymentsResponse
Returns a new instance of ListDeploymentsResponse.
690 691 692 |
# File 'generated/google/apis/script_v1/classes.rb', line 690 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployments ⇒ Array<Google::Apis::ScriptV1::Deployment>
The list of deployments.
Corresponds to the JSON property deployments
683 684 685 |
# File 'generated/google/apis/script_v1/classes.rb', line 683 def deployments @deployments end |
#next_page_token ⇒ String
The token that can be used in the next call to get the next page of results.
Corresponds to the JSON property nextPageToken
688 689 690 |
# File 'generated/google/apis/script_v1/classes.rb', line 688 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
695 696 697 698 |
# File 'generated/google/apis/script_v1/classes.rb', line 695 def update!(**args) @deployments = args[:deployments] if args.key?(:deployments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |