/* Options: Date: 2024-12-15 20:01:13 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: ResendPasswordResetConfirmationRequest.* //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 ResendPasswordResetConfirmationResponse implements IConvertible { ResponseStatus? responseStatus; ResendPasswordResetConfirmationResponse({this.responseStatus}); ResendPasswordResetConfirmationResponse.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() => "ResendPasswordResetConfirmationResponse"; TypeContext? context = _ctx; } // @Route("/users/passwords/reset/confirm/resend", "POST") class ResendPasswordResetConfirmationRequest extends PostOperationUnTenanted implements IReturn, IConvertible { String? token; ResendPasswordResetConfirmationRequest({this.token}); ResendPasswordResetConfirmationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); token = json['token']; return this; } Map toJson() => super.toJson()..addAll({ 'token': token }); createResponse() => ResendPasswordResetConfirmationResponse(); getResponseTypeName() => "ResendPasswordResetConfirmationResponse"; getTypeName() => "ResendPasswordResetConfirmationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'staging_api.billiecart.com.au', types: { 'PostOperationUnTenanted': TypeInfo(TypeOf.AbstractClass), 'ResendPasswordResetConfirmationResponse': TypeInfo(TypeOf.Class, create:() => ResendPasswordResetConfirmationResponse()), 'ResendPasswordResetConfirmationRequest': TypeInfo(TypeOf.Class, create:() => ResendPasswordResetConfirmationRequest()), });