Class: Google::Apis::AndroidpublisherV3::AppEdit

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb

Overview

Represents an edit of an app. An edit allows clients to make multiple changes before committing them in one operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AppEdit

Returns a new instance of AppEdit.



200
201
202
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 200

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#expiry_time_secondsString

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

Returns:

  • (String)


193
194
195
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 193

def expiry_time_seconds
  @expiry_time_seconds
end

#idString

The ID of the edit that can be used in subsequent API calls. Corresponds to the JSON property id

Returns:

  • (String)


198
199
200
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 198

def id
  @id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



205
206
207
208
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 205

def update!(**args)
  @expiry_time_seconds = args[:expiry_time_seconds] if args.key?(:expiry_time_seconds)
  @id = args[:id] if args.key?(:id)
end