/* Options: Date: 2026-04-04 01:04:46 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: DeleteDynamicContent.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Delete a dynamic content record. */ // @Route("/dynamiccontent/{ObjectDynamicContentId}", "DELETE") // @Api(Description="Delete a dynamic content record.") class DeleteDynamicContent implements IReturn, IConvertible, IDelete { /** * Id of the Dynamic Content record. */ // @ApiMember(Description="Id of the Dynamic Content record.", ParameterType="path") String? ObjectDynamicContentId; DeleteDynamicContent({this.ObjectDynamicContentId}); DeleteDynamicContent.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ObjectDynamicContentId = json['ObjectDynamicContentId']; return this; } Map toJson() => { 'ObjectDynamicContentId': ObjectDynamicContentId }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "DeleteDynamicContent"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'DeleteDynamicContent': TypeInfo(TypeOf.Class, create:() => DeleteDynamicContent()), });