class Google::Apis::YoutubePartnerV1::DownloadParameters
Parameters specific to media downloads.
Attributes
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]
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]
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]
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
# File lib/google/apis/youtube_partner_v1/classes.rb, line 1765 def initialize(**args) update!(**args) end
Public Instance Methods
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