mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 01:43:13 +00:00
29 lines
964 B
Dart
29 lines
964 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'schema.graphql.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Input$RecoveryKeyLimitsInput _$Input$RecoveryKeyLimitsInputFromJson(
|
|
Map<String, dynamic> json) =>
|
|
Input$RecoveryKeyLimitsInput(
|
|
expirationDate: _nullable$dateTimeFromJson(json['expirationDate']),
|
|
uses: json['uses'] as int?,
|
|
);
|
|
|
|
Input$UseNewDeviceKeyInput _$Input$UseNewDeviceKeyInputFromJson(
|
|
Map<String, dynamic> json) =>
|
|
Input$UseNewDeviceKeyInput(
|
|
key: json['key'] as String,
|
|
deviceName: json['deviceName'] as String,
|
|
);
|
|
|
|
Input$UseRecoveryKeyInput _$Input$UseRecoveryKeyInputFromJson(
|
|
Map<String, dynamic> json) =>
|
|
Input$UseRecoveryKeyInput(
|
|
key: json['key'] as String,
|
|
deviceName: json['deviceName'] as String,
|
|
);
|