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.
624 625 626 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 624 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
617 618 619 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 617 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
622 623 624 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 622 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
629 630 631 632 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 629 def update!(**args) @expiry_time_seconds = args[:expiry_time_seconds] if args.key?(:expiry_time_seconds) @id = args[:id] if args.key?(:id) end |