/* Options: Date: 2024-10-06 10:30:03 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddressSyncUpdateWithValuesRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/admissions/{uuid}/address/sync/update/withvalues", "POST") class AddressSyncUpdateWithValuesRequest implements IReturn, IConvertible, IPost { String? uuid; String? addr1; String? addr2; String? country; String? state; String? city; String? code; String? email; String? phone_home; String? phone_cell; String? phone_bus; String? authorizing_uuid; AddressSyncUpdateWithValuesRequest({this.uuid,this.addr1,this.addr2,this.country,this.state,this.city,this.code,this.email,this.phone_home,this.phone_cell,this.phone_bus,this.authorizing_uuid}); AddressSyncUpdateWithValuesRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; addr1 = json['addr1']; addr2 = json['addr2']; country = json['country']; state = json['state']; city = json['city']; code = json['code']; email = json['email']; phone_home = json['phone_home']; phone_cell = json['phone_cell']; phone_bus = json['phone_bus']; authorizing_uuid = json['authorizing_uuid']; return this; } Map toJson() => { 'uuid': uuid, 'addr1': addr1, 'addr2': addr2, 'country': country, 'state': state, 'city': city, 'code': code, 'email': email, 'phone_home': phone_home, 'phone_cell': phone_cell, 'phone_bus': phone_bus, 'authorizing_uuid': authorizing_uuid }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "AddressSyncUpdateWithValuesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'AddressSyncUpdateWithValuesRequest': TypeInfo(TypeOf.Class, create:() => AddressSyncUpdateWithValuesRequest()), });