// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.12 // ignore_for_file: unused_element, unused_import // ignore_for_file: always_put_required_named_parameters_first // ignore_for_file: constant_identifier_names // ignore_for_file: lines_longer_than_80_chars part of openapi.api; class SystemConfigFFmpegDto { /// Returns a new [SystemConfigFFmpegDto] instance. SystemConfigFFmpegDto({ required this.accel, required this.bframes, required this.cqMode, required this.crf, required this.gopSize, required this.maxBitrate, required this.npl, required this.preset, required this.refs, required this.targetAudioCodec, required this.targetResolution, required this.targetVideoCodec, required this.temporalAQ, required this.threads, required this.tonemap, required this.transcode, required this.twoPass, }); TranscodeHWAccel accel; int bframes; CQMode cqMode; int crf; int gopSize; String maxBitrate; int npl; String preset; int refs; AudioCodec targetAudioCodec; String targetResolution; VideoCodec targetVideoCodec; bool temporalAQ; int threads; ToneMapping tonemap; TranscodePolicy transcode; bool twoPass; @override bool operator ==(Object other) => identical(this, other) || other is SystemConfigFFmpegDto && other.accel == accel && other.bframes == bframes && other.cqMode == cqMode && other.crf == crf && other.gopSize == gopSize && other.maxBitrate == maxBitrate && other.npl == npl && other.preset == preset && other.refs == refs && other.targetAudioCodec == targetAudioCodec && other.targetResolution == targetResolution && other.targetVideoCodec == targetVideoCodec && other.temporalAQ == temporalAQ && other.threads == threads && other.tonemap == tonemap && other.transcode == transcode && other.twoPass == twoPass; @override int get hashCode => // ignore: unnecessary_parenthesis (accel.hashCode) + (bframes.hashCode) + (cqMode.hashCode) + (crf.hashCode) + (gopSize.hashCode) + (maxBitrate.hashCode) + (npl.hashCode) + (preset.hashCode) + (refs.hashCode) + (targetAudioCodec.hashCode) + (targetResolution.hashCode) + (targetVideoCodec.hashCode) + (temporalAQ.hashCode) + (threads.hashCode) + (tonemap.hashCode) + (transcode.hashCode) + (twoPass.hashCode); @override String toString() => 'SystemConfigFFmpegDto[accel=$accel, bframes=$bframes, cqMode=$cqMode, crf=$crf, gopSize=$gopSize, maxBitrate=$maxBitrate, npl=$npl, preset=$preset, refs=$refs, targetAudioCodec=$targetAudioCodec, targetResolution=$targetResolution, targetVideoCodec=$targetVideoCodec, temporalAQ=$temporalAQ, threads=$threads, tonemap=$tonemap, transcode=$transcode, twoPass=$twoPass]'; Map toJson() { final json = {}; json[r'accel'] = this.accel; json[r'bframes'] = this.bframes; json[r'cqMode'] = this.cqMode; json[r'crf'] = this.crf; json[r'gopSize'] = this.gopSize; json[r'maxBitrate'] = this.maxBitrate; json[r'npl'] = this.npl; json[r'preset'] = this.preset; json[r'refs'] = this.refs; json[r'targetAudioCodec'] = this.targetAudioCodec; json[r'targetResolution'] = this.targetResolution; json[r'targetVideoCodec'] = this.targetVideoCodec; json[r'temporalAQ'] = this.temporalAQ; json[r'threads'] = this.threads; json[r'tonemap'] = this.tonemap; json[r'transcode'] = this.transcode; json[r'twoPass'] = this.twoPass; return json; } /// Returns a new [SystemConfigFFmpegDto] instance and imports its values from /// [value] if it's a [Map], null otherwise. // ignore: prefer_constructors_over_static_methods static SystemConfigFFmpegDto? fromJson(dynamic value) { if (value is Map) { final json = value.cast(); return SystemConfigFFmpegDto( accel: TranscodeHWAccel.fromJson(json[r'accel'])!, bframes: mapValueOfType(json, r'bframes')!, cqMode: CQMode.fromJson(json[r'cqMode'])!, crf: mapValueOfType(json, r'crf')!, gopSize: mapValueOfType(json, r'gopSize')!, maxBitrate: mapValueOfType(json, r'maxBitrate')!, npl: mapValueOfType(json, r'npl')!, preset: mapValueOfType(json, r'preset')!, refs: mapValueOfType(json, r'refs')!, targetAudioCodec: AudioCodec.fromJson(json[r'targetAudioCodec'])!, targetResolution: mapValueOfType(json, r'targetResolution')!, targetVideoCodec: VideoCodec.fromJson(json[r'targetVideoCodec'])!, temporalAQ: mapValueOfType(json, r'temporalAQ')!, threads: mapValueOfType(json, r'threads')!, tonemap: ToneMapping.fromJson(json[r'tonemap'])!, transcode: TranscodePolicy.fromJson(json[r'transcode'])!, twoPass: mapValueOfType(json, r'twoPass')!, ); } return null; } static List listFromJson(dynamic json, {bool growable = false,}) { final result = []; if (json is List && json.isNotEmpty) { for (final row in json) { final value = SystemConfigFFmpegDto.fromJson(row); if (value != null) { result.add(value); } } } return result.toList(growable: growable); } static Map mapFromJson(dynamic json) { final map = {}; if (json is Map && json.isNotEmpty) { json = json.cast(); // ignore: parameter_assignments for (final entry in json.entries) { final value = SystemConfigFFmpegDto.fromJson(entry.value); if (value != null) { map[entry.key] = value; } } } return map; } // maps a json object with a list of SystemConfigFFmpegDto-objects as value to a dart map static Map> mapListFromJson(dynamic json, {bool growable = false,}) { final map = >{}; if (json is Map && json.isNotEmpty) { // ignore: parameter_assignments json = json.cast(); for (final entry in json.entries) { map[entry.key] = SystemConfigFFmpegDto.listFromJson(entry.value, growable: growable,); } } return map; } /// The list of required keys that must be present in a JSON. static const requiredKeys = { 'accel', 'bframes', 'cqMode', 'crf', 'gopSize', 'maxBitrate', 'npl', 'preset', 'refs', 'targetAudioCodec', 'targetResolution', 'targetVideoCodec', 'temporalAQ', 'threads', 'tonemap', 'transcode', 'twoPass', }; }