Class: Google::Apis::WalletobjectsV1::DiffUploadRequest
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::DiffUploadRequest
- 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
A Diff upload request. For details on the Scotty Diff protocol, visit http:// go/scotty-diff-protocol.
Instance Attribute Summary collapse
-
#checksums_info ⇒ Google::Apis::WalletobjectsV1::CompositeMedia
A sequence of media data references representing composite data.
-
#object_info ⇒ Google::Apis::WalletobjectsV1::CompositeMedia
A sequence of media data references representing composite data.
-
#object_version ⇒ String
The object version of the object that is the base version the incoming diff script will be applied to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiffUploadRequest
constructor
A new instance of DiffUploadRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiffUploadRequest
Returns a new instance of DiffUploadRequest.
1077 1078 1079 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1077 def initialize(**args) update!(**args) end |
Instance Attribute Details
#checksums_info ⇒ 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 checksumsInfo
1062 1063 1064 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1062 def checksums_info @checksums_info end |
#object_info ⇒ 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 objectInfo
1069 1070 1071 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1069 def object_info @object_info end |
#object_version ⇒ String
The object version of the object that is the base version the incoming diff
script will be applied to. This field will always be filled in.
Corresponds to the JSON property objectVersion
1075 1076 1077 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1075 def object_version @object_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1082 1083 1084 1085 1086 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 1082 def update!(**args) @checksums_info = args[:checksums_info] if args.key?(:checksums_info) @object_info = args[:object_info] if args.key?(:object_info) @object_version = args[:object_version] if args.key?(:object_version) end |