class Google::Apis::AndroidpublisherV2::AppEdit
Represents an edit of an app. An edit allows clients to make multiple changes before committing them in one operation.
Attributes
expiry_time_seconds[RW]
The time at which the edit will expire and will be no longer valid for use in any subsequent API calls (encoded as seconds since the Epoch). Corresponds to the JSON property `expiryTimeSeconds` @return [String]
id[RW]
The ID of the edit that can be used in subsequent API calls. Corresponds to the JSON property `id` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/androidpublisher_v2/classes.rb, line 244 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/androidpublisher_v2/classes.rb, line 249 def update!(**args) @expiry_time_seconds = args[:expiry_time_seconds] if args.key?(:expiry_time_seconds) @id = args[:id] if args.key?(:id) end