GenerateCustomerIdResult.fromJson constructor
Implementation
factory GenerateCustomerIdResult.fromJson(Map<String, dynamic> json) {
return GenerateCustomerIdResult(
customerId: json['customerId'] as String,
expiresAt: json['expiresAt'] as String,
deviceId: json['deviceId'] as String,
);
}