Class: Google::Apis::AndroidpublisherV3::AppEdit
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::AppEdit
- 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
-
#expiry_time_seconds ⇒ String
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).
-
#id ⇒ String
The ID of the edit that can be used in subsequent API calls.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppEdit
constructor
A new instance of AppEdit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_seconds ⇒ String
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
193 194 195 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 193 def expiry_time_seconds @expiry_time_seconds end |
#id ⇒ String
The ID of the edit that can be used in subsequent API calls.
Corresponds to the JSON property id
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 |