feat: Add optional agentTypeId field to RegisterRequest model.
This commit is contained in:
@@ -13,6 +13,7 @@ _RegisterRequest _$RegisterRequestFromJson(Map<String, dynamic> json) =>
|
||||
role: json['role'] as String,
|
||||
firstName: json['firstName'] as String?,
|
||||
lastName: json['lastName'] as String?,
|
||||
agentTypeId: json['agentTypeId'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$RegisterRequestToJson(_RegisterRequest instance) =>
|
||||
@@ -22,4 +23,5 @@ Map<String, dynamic> _$RegisterRequestToJson(_RegisterRequest instance) =>
|
||||
'role': instance.role,
|
||||
'firstName': instance.firstName,
|
||||
'lastName': instance.lastName,
|
||||
'agentTypeId': instance.agentTypeId,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user