/* Options: Date: 2024-12-15 19:32:54 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResendGuestInvitationRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class PostOperationUnTenanted implements IPost { PostOperationUnTenanted(); PostOperationUnTenanted.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "PostOperationUnTenanted<$TResponse>"; TypeContext? context = _ctx; } class ResendGuestInvitationResponse implements IConvertible { ResponseStatus? responseStatus; ResendGuestInvitationResponse({this.responseStatus}); ResendGuestInvitationResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "ResendGuestInvitationResponse"; TypeContext? context = _ctx; } // @Route("/users/invite/resend", "POST") class ResendGuestInvitationRequest extends PostOperationUnTenanted implements IReturn, IConvertible { String? token; ResendGuestInvitationRequest({this.token}); ResendGuestInvitationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); token = json['token']; return this; } Map toJson() => super.toJson()..addAll({ 'token': token }); createResponse() => ResendGuestInvitationResponse(); getResponseTypeName() => "ResendGuestInvitationResponse"; getTypeName() => "ResendGuestInvitationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'staging_api.billiecart.com.au', types: { 'PostOperationUnTenanted': TypeInfo(TypeOf.AbstractClass), 'ResendGuestInvitationResponse': TypeInfo(TypeOf.Class, create:() => ResendGuestInvitationResponse()), 'ResendGuestInvitationRequest': TypeInfo(TypeOf.Class, create:() => ResendGuestInvitationRequest()), });