Class: Google::Apis::AndroidpublisherV3::AppEdit
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::AppEdit
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
An app edit. The resource for EditsService.
Instance Attribute Summary collapse
-
#expiry_time_seconds ⇒ String
Output only.
-
#id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppEdit
constructor
A new instance of AppEdit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppEdit
Returns a new instance of AppEdit.
413 414 415 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 413 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expiry_time_seconds ⇒ String
Output only. The time (as seconds since Epoch) at which the edit will expire
and will be no longer valid for use.
Corresponds to the JSON property expiryTimeSeconds
406 407 408 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 406 def expiry_time_seconds @expiry_time_seconds end |
#id ⇒ String
Output only. Identifier of the edit. Can be used in subsequent API calls.
Corresponds to the JSON property id
411 412 413 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 411 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
418 419 420 421 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 418 def update!(**args) @expiry_time_seconds = args[:expiry_time_seconds] if args.key?(:expiry_time_seconds) @id = args[:id] if args.key?(:id) end |