selfprivacy.org.app/lib/logic/models/device_token.g.dart
NaiJi 31be961dd0 Implement server endpoints for tokens
get /auth/recovery_token
post /auth/recovery_token
post /auth/recovery_token/use
post /auth/new_device/authorize
post /auth/new_device
delete /auth/new_device
get /auth/tokens
post /auth/tokens
delete /auth/tokens
2022-05-10 02:16:36 +03:00

13 lines
421 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'device_token.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
DeviceToken _$DeviceTokenFromJson(Map<String, dynamic> json) => DeviceToken(
device: json['device'] as String,
token: json['token'] as String,
);