/* Options: Date: 2026-09-21 22:52:05 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ReplaceLC.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/ReplaceLC/{OldLCAddress}/{NewLCAddress}") public static class ReplaceLC { /** * Old LC address */ @ApiMember(Description="Old LC address", IsRequired=true) public String OldLCAddress = null; /** * New LC address */ @ApiMember(Description="New LC address", IsRequired=true) public String NewLCAddress = null; public String getOldLCAddress() { return OldLCAddress; } public ReplaceLC setOldLCAddress(String value) { this.OldLCAddress = value; return this; } public String getNewLCAddress() { return NewLCAddress; } public ReplaceLC setNewLCAddress(String value) { this.NewLCAddress = value; return this; } } }