Add Nordigen
This commit is contained in:
parent
d46d3b3347
commit
531a48c853
|
|
@ -105,7 +105,7 @@ abstract class BankAccountEntity extends Object
|
||||||
bool get disabledUpstream;
|
bool get disabledUpstream;
|
||||||
|
|
||||||
@BuiltValueField(wireName: 'integration_type')
|
@BuiltValueField(wireName: 'integration_type')
|
||||||
bool get integrationType;
|
String get integrationType;
|
||||||
|
|
||||||
double get balance;
|
double get balance;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,7 @@ class _$BankAccountEntitySerializer
|
||||||
specifiedType: const FullType(bool)),
|
specifiedType: const FullType(bool)),
|
||||||
'integration_type',
|
'integration_type',
|
||||||
serializers.serialize(object.integrationType,
|
serializers.serialize(object.integrationType,
|
||||||
specifiedType: const FullType(bool)),
|
specifiedType: const FullType(String)),
|
||||||
'balance',
|
'balance',
|
||||||
serializers.serialize(object.balance,
|
serializers.serialize(object.balance,
|
||||||
specifiedType: const FullType(double)),
|
specifiedType: const FullType(double)),
|
||||||
|
|
@ -234,7 +234,7 @@ class _$BankAccountEntitySerializer
|
||||||
break;
|
break;
|
||||||
case 'integration_type':
|
case 'integration_type':
|
||||||
result.integrationType = serializers.deserialize(value,
|
result.integrationType = serializers.deserialize(value,
|
||||||
specifiedType: const FullType(bool))! as bool;
|
specifiedType: const FullType(String))! as String;
|
||||||
break;
|
break;
|
||||||
case 'balance':
|
case 'balance':
|
||||||
result.balance = serializers.deserialize(value,
|
result.balance = serializers.deserialize(value,
|
||||||
|
|
@ -501,7 +501,7 @@ class _$BankAccountEntity extends BankAccountEntity {
|
||||||
@override
|
@override
|
||||||
final bool disabledUpstream;
|
final bool disabledUpstream;
|
||||||
@override
|
@override
|
||||||
final bool integrationType;
|
final String integrationType;
|
||||||
@override
|
@override
|
||||||
final double balance;
|
final double balance;
|
||||||
@override
|
@override
|
||||||
|
|
@ -691,9 +691,9 @@ class BankAccountEntityBuilder
|
||||||
set disabledUpstream(bool? disabledUpstream) =>
|
set disabledUpstream(bool? disabledUpstream) =>
|
||||||
_$this._disabledUpstream = disabledUpstream;
|
_$this._disabledUpstream = disabledUpstream;
|
||||||
|
|
||||||
bool? _integrationType;
|
String? _integrationType;
|
||||||
bool? get integrationType => _$this._integrationType;
|
String? get integrationType => _$this._integrationType;
|
||||||
set integrationType(bool? integrationType) =>
|
set integrationType(String? integrationType) =>
|
||||||
_$this._integrationType = integrationType;
|
_$this._integrationType = integrationType;
|
||||||
|
|
||||||
double? _balance;
|
double? _balance;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue