Class: Google::Apis::ScriptV1::ListDeploymentsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#deploymentsArray<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_tokenString

The token that can be used in the next call to get the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


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