mirror of
https://bitbucket.org/myhomie/myhomie_app.git
synced 2025-12-06 09:01:20 +00:00
191 lines
5.7 KiB
Dart
191 lines
5.7 KiB
Dart
//
|
|
// 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 Action {
|
|
/// Returns a new [Action] instance.
|
|
Action({
|
|
this.groupId,
|
|
this.deviceId,
|
|
this.states = const [],
|
|
this.rawRequest,
|
|
this.providerId,
|
|
this.type,
|
|
this.isForce,
|
|
});
|
|
|
|
String? groupId;
|
|
|
|
String? deviceId;
|
|
|
|
List<AutomationState>? states;
|
|
|
|
String? rawRequest;
|
|
|
|
String? providerId;
|
|
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
ActionType? type;
|
|
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
bool? isForce;
|
|
|
|
@override
|
|
bool operator ==(Object other) => identical(this, other) || other is Action &&
|
|
other.groupId == groupId &&
|
|
other.deviceId == deviceId &&
|
|
other.states == states &&
|
|
other.rawRequest == rawRequest &&
|
|
other.providerId == providerId &&
|
|
other.type == type &&
|
|
other.isForce == isForce;
|
|
|
|
@override
|
|
int get hashCode =>
|
|
// ignore: unnecessary_parenthesis
|
|
(groupId == null ? 0 : groupId!.hashCode) +
|
|
(deviceId == null ? 0 : deviceId!.hashCode) +
|
|
(states == null ? 0 : states!.hashCode) +
|
|
(rawRequest == null ? 0 : rawRequest!.hashCode) +
|
|
(providerId == null ? 0 : providerId!.hashCode) +
|
|
(type == null ? 0 : type!.hashCode) +
|
|
(isForce == null ? 0 : isForce!.hashCode);
|
|
|
|
@override
|
|
String toString() => 'Action[groupId=$groupId, deviceId=$deviceId, states=$states, rawRequest=$rawRequest, providerId=$providerId, type=$type, isForce=$isForce]';
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final json = <String, dynamic>{};
|
|
if (this.groupId != null) {
|
|
json[r'groupId'] = this.groupId;
|
|
} else {
|
|
json[r'groupId'] = null;
|
|
}
|
|
if (this.deviceId != null) {
|
|
json[r'deviceId'] = this.deviceId;
|
|
} else {
|
|
json[r'deviceId'] = null;
|
|
}
|
|
if (this.states != null) {
|
|
json[r'states'] = this.states;
|
|
} else {
|
|
json[r'states'] = null;
|
|
}
|
|
if (this.rawRequest != null) {
|
|
json[r'rawRequest'] = this.rawRequest;
|
|
} else {
|
|
json[r'rawRequest'] = null;
|
|
}
|
|
if (this.providerId != null) {
|
|
json[r'providerId'] = this.providerId;
|
|
} else {
|
|
json[r'providerId'] = null;
|
|
}
|
|
if (this.type != null) {
|
|
json[r'type'] = this.type;
|
|
} else {
|
|
json[r'type'] = null;
|
|
}
|
|
if (this.isForce != null) {
|
|
json[r'isForce'] = this.isForce;
|
|
} else {
|
|
json[r'isForce'] = null;
|
|
}
|
|
return json;
|
|
}
|
|
|
|
/// Returns a new [Action] instance and imports its values from
|
|
/// [value] if it's a [Map], null otherwise.
|
|
// ignore: prefer_constructors_over_static_methods
|
|
static Action? fromJson(dynamic value) {
|
|
if (value is Map) {
|
|
final json = value.cast<String, dynamic>();
|
|
|
|
// Ensure that the map contains the required keys.
|
|
// Note 1: the values aren't checked for validity beyond being non-null.
|
|
// Note 2: this code is stripped in release mode!
|
|
assert(() {
|
|
requiredKeys.forEach((key) {
|
|
assert(json.containsKey(key), 'Required key "Action[$key]" is missing from JSON.');
|
|
assert(json[key] != null, 'Required key "Action[$key]" has a null value in JSON.');
|
|
});
|
|
return true;
|
|
}());
|
|
|
|
return Action(
|
|
groupId: mapValueOfType<String>(json, r'groupId'),
|
|
deviceId: mapValueOfType<String>(json, r'deviceId'),
|
|
states: AutomationState.listFromJson(json[r'states']),
|
|
rawRequest: mapValueOfType<String>(json, r'rawRequest'),
|
|
providerId: mapValueOfType<String>(json, r'providerId'),
|
|
type: ActionType.fromJson(json[r'type']),
|
|
isForce: mapValueOfType<bool>(json, r'isForce'),
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
static List<Action> listFromJson(dynamic json, {bool growable = false,}) {
|
|
final result = <Action>[];
|
|
if (json is List && json.isNotEmpty) {
|
|
for (final row in json) {
|
|
final value = Action.fromJson(row);
|
|
if (value != null) {
|
|
result.add(value);
|
|
}
|
|
}
|
|
}
|
|
return result.toList(growable: growable);
|
|
}
|
|
|
|
static Map<String, Action> mapFromJson(dynamic json) {
|
|
final map = <String, Action>{};
|
|
if (json is Map && json.isNotEmpty) {
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
for (final entry in json.entries) {
|
|
final value = Action.fromJson(entry.value);
|
|
if (value != null) {
|
|
map[entry.key] = value;
|
|
}
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
|
|
// maps a json object with a list of Action-objects as value to a dart map
|
|
static Map<String, List<Action>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
final map = <String, List<Action>>{};
|
|
if (json is Map && json.isNotEmpty) {
|
|
// ignore: parameter_assignments
|
|
json = json.cast<String, dynamic>();
|
|
for (final entry in json.entries) {
|
|
map[entry.key] = Action.listFromJson(entry.value, growable: growable,);
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
|
|
/// The list of required keys that must be present in a JSON.
|
|
static const requiredKeys = <String>{
|
|
};
|
|
}
|
|
|