class Google::Apis::CloudbuildV1::ListBuildsResponse

Response including listed builds.

Attributes

builds[RW]

Builds will be sorted by `create_time`, descending. Corresponds to the JSON property `builds` @return [Array<Google::Apis::CloudbuildV1::Build>]

next_page_token[RW]

Token to receive the next page of results. This will be absent if the end of the response list has been reached. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudbuild_v1/classes.rb, line 1691
def update!(**args)
  @builds = args[:builds] if args.key?(:builds)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end