Class: Google::Apis::AndroidpublisherV2::AppEdit
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV2::AppEdit
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/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
244 245 246 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 244 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
237 238 239 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 237 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
242 243 244 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 242 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
249 250 251 252 |
# 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 |