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
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.
198 199 200 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 198 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
191 192 193 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 191 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
196 197 198 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 196 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
203 204 205 206 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 203 def update!(**args) @expiry_time_seconds = args[:expiry_time_seconds] if args.key?(:expiry_time_seconds) @id = args[:id] if args.key?(:id) end |