class Google::Apis::YoutubePartnerV1::DownloadParameters

Parameters specific to media downloads.

Attributes

allow_gzip_compression[RW]

A boolean to be returned in the response to Scotty. Allows/disallows gzip encoding of the payload content when the server thinks it's advantageous ( hence, does not guarantee compression) which allows Scotty to GZip the response to the client. Corresponds to the JSON property `allowGzipCompression` @return [Boolean]

allow_gzip_compression?[RW]

A boolean to be returned in the response to Scotty. Allows/disallows gzip encoding of the payload content when the server thinks it's advantageous ( hence, does not guarantee compression) which allows Scotty to GZip the response to the client. Corresponds to the JSON property `allowGzipCompression` @return [Boolean]

ignore_range[RW]

Determining whether or not Apiary should skip the inclusion of any Content- Range header on its response to Scotty. Corresponds to the JSON property `ignoreRange` @return [Boolean]

ignore_range?[RW]

Determining whether or not Apiary should skip the inclusion of any Content- Range header on its response to Scotty. Corresponds to the JSON property `ignoreRange` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 1765
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 1770
def update!(**args)
  @allow_gzip_compression = args[:allow_gzip_compression] if args.key?(:allow_gzip_compression)
  @ignore_range = args[:ignore_range] if args.key?(:ignore_range)
end