// GENERATED CODE - DO NOT MODIFY BY HAND
part of '../../../domain/models/payment_method.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
PaymentMethod _$PaymentMethodFromJson(Map json) => PaymentMethod(
brand: json['brand'] as String?,
cvc: json['cvc'] as String?,
encryptedCard: json['encryptedCard'] as String?,
encryptedCardNumber: json['encryptedCardNumber'] as String?,
encryptedExpiryMonth: json['encryptedExpiryMonth'] as String?,
encryptedExpiryYear: json['encryptedExpiryYear'] as String?,
encryptedSecurityCode: json['encryptedSecurityCode'] as String?,
expiryMonth: json['expiryMonth'] as String?,
expiryYear: json['expiryYear'] as String?,
holderName: json['holderName'] as String?,
number: json['number'] as String?,
type: json['type'] as String?,
);
Map<String, dynamic> _$PaymentMethodToJson(PaymentMethod instance) =>
<String, dynamic>{
'brand': instance.brand,
'cvc': instance.cvc,
'encryptedCard': instance.encryptedCard,
'encryptedCardNumber': instance.encryptedCardNumber,
'encryptedExpiryMonth': instance.encryptedExpiryMonth,
'encryptedExpiryYear': instance.encryptedExpiryYear,
'encryptedSecurityCode': instance.encryptedSecurityCode,
'expiryMonth': instance.expiryMonth,
'expiryYear': instance.expiryYear,
'holderName': instance.holderName,
'number': instance.number,
'type': instance.type,
};