/* Options: Date: 2026-04-04 01:04:42 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConnectionRequestResend.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ConnectionRequestResendResponse implements IConvertible { ResponseStatus? ResponseStatus; ConnectionRequestResendResponse({this.ResponseStatus}); ConnectionRequestResendResponse.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() => "ConnectionRequestResendResponse"; TypeContext? context = _ctx; } /** * Resend the connection request. An invitation email is sent if the user is not registered. */ // @Route("/connectionrequests/{ConnectionRequestId}/resend") // @Api(Description="Resend the connection request. An invitation email is sent if the user is not registered. ") class ConnectionRequestResend implements IReturn, IConvertible, IGet { /** * Resend connection request for the specified connection request id. */ // @ApiMember(Description="Resend connection request for the specified connection request id.", IsRequired=true, Name="ConnectionRequestId") String? ConnectionRequestId; /** * Resend connection request for the specified contact id. */ // @ApiMember(Description="Resend connection request for the specified contact id.", IsRequired=true, Name="ContactId") String? ContactId; ConnectionRequestResend({this.ConnectionRequestId,this.ContactId}); ConnectionRequestResend.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ConnectionRequestId = json['ConnectionRequestId']; ContactId = json['ContactId']; return this; } Map toJson() => { 'ConnectionRequestId': ConnectionRequestId, 'ContactId': ContactId }; createResponse() => ConnectionRequestResendResponse(); getResponseTypeName() => "ConnectionRequestResendResponse"; getTypeName() => "ConnectionRequestResend"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'ConnectionRequestResendResponse': TypeInfo(TypeOf.Class, create:() => ConnectionRequestResendResponse()), 'ConnectionRequestResend': TypeInfo(TypeOf.Class, create:() => ConnectionRequestResend()), });