class Google::Apis::ScriptV1::ListDeploymentsResponse

Response with the list of deployments for the specified Apps Script project.

Attributes

deployments[RW]

The list of deployments. Corresponds to the JSON property `deployments` @return [Array<Google::Apis::ScriptV1::Deployment>]

next_page_token[RW]

The token that can be used in the next call to get the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 690
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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