class Google::Apis::ScriptV1::ListVersionsResponse
Response with the list of the versions for the specified script project.
Attributes
next_page_token[RW]
The token use to fetch the next page of records. if not exist in the response, that means no more versions to list. Corresponds to the JSON property `nextPageToken` @return [String]
versions[RW]
The list of versions. Corresponds to the JSON property `versions` @return [Array<Google::Apis::ScriptV1::Version>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 787 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 792 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @versions = args[:versions] if args.key?(:versions) end