Class: Google::Apis::WalletobjectsV1::DiffUploadResponse
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::DiffUploadResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb
Overview
Backend response for a Diff upload request. For details on the Scotty Diff protocol, visit http://go/scotty-diff-protocol.
Instance Attribute Summary collapse
-
#object_version ⇒ String
The object version of the object at the server.
-
#original_object ⇒ Google::Apis::WalletobjectsV1::CompositeMedia
A sequence of media data references representing composite data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiffUploadResponse
constructor
A new instance of DiffUploadResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiffUploadResponse
Returns a new instance of DiffUploadResponse.
1113 1114 1115 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#object_version ⇒ String
The object version of the object at the server. Must be included in the end
notification response. The version in the end notification response must
correspond to the new version of the object that is now stored at the server,
after the upload.
Corresponds to the JSON property objectVersion
1104 1105 1106 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1104 def object_version @object_version end |
#original_object ⇒ Google::Apis::WalletobjectsV1::CompositeMedia
A sequence of media data references representing composite data. Introduced to
support Bigstore composite objects. For details, visit http://go/bigstore-
composites.
Corresponds to the JSON property originalObject
1111 1112 1113 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1111 def original_object @original_object end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1118 1119 1120 1121 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1118 def update!(**args) @object_version = args[:object_version] if args.key?(:object_version) @original_object = args[:original_object] if args.key?(:original_object) end |