class Google::Apis::YoutubePartnerV1::DiffChecksumsResponse

Backend response for a Diff get checksums response. For details on the Scotty Diff protocol, visit go/scotty-diff-protocol.

Attributes

checksums_location[RW]

A sequence of media data references representing composite data. Introduced to support Bigstore composite objects. For details, visit go/bigstore- composites. Corresponds to the JSON property `checksumsLocation` @return [Google::Apis::YoutubePartnerV1::CompositeMedia]

chunk_size_bytes[RW]

The chunk size of checksums. Must be a multiple of 256KB. Corresponds to the JSON property `chunkSizeBytes` @return [Fixnum]

object_location[RW]

A sequence of media data references representing composite data. Introduced to support Bigstore composite objects. For details, visit go/bigstore- composites. Corresponds to the JSON property `objectLocation` @return [Google::Apis::YoutubePartnerV1::CompositeMedia]

object_size_bytes[RW]

The total size of the server object. Corresponds to the JSON property `objectSizeBytes` @return [Fixnum]

object_version[RW]

The object version of the object the checksums are being returned for. Corresponds to the JSON property `objectVersion` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 1615
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_partner_v1/classes.rb, line 1620
def update!(**args)
  @checksums_location = args[:checksums_location] if args.key?(:checksums_location)
  @chunk_size_bytes = args[:chunk_size_bytes] if args.key?(:chunk_size_bytes)
  @object_location = args[:object_location] if args.key?(:object_location)
  @object_size_bytes = args[:object_size_bytes] if args.key?(:object_size_bytes)
  @object_version = args[:object_version] if args.key?(:object_version)
end