/* Options: Date: 2026-04-04 06:47:51 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: UpdateDimensionValueStatus.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Archives or Restores a Dimension Value record. */ // @Route("/dimensionvalues/{DimensionValueId}/archive", "PUT") // @Route("/dimensionvalues/{DimensionValueId}/restore", "PUT") // @Api(Description="Archives or Restores a Dimension Value record.") class UpdateDimensionValueStatus implements IReturn, IConvertible, IPut { /** * DimensionValueId of the dimension value to have its status changed */ // @ApiMember(Description="DimensionValueId of the dimension value to have its status changed", Name="DimensionValueId") String? DimensionValueId; UpdateDimensionValueStatus({this.DimensionValueId}); UpdateDimensionValueStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DimensionValueId = json['DimensionValueId']; return this; } Map toJson() => { 'DimensionValueId': DimensionValueId }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "UpdateDimensionValueStatus"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'UpdateDimensionValueStatus': TypeInfo(TypeOf.Class, create:() => UpdateDimensionValueStatus()), });