/* Options: Date: 2025-05-05 17:21:39 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateBackOrderLinkRequest.* //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="/v1/backorder/link/{Guid}", Verbs="PUT") public static class UpdateBackOrderLinkRequest extends UpdateBackOrderLinkRequest implements IReturn, IPut { private static Object responseType = UpdateBackOrderLinkResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateBackOrderLinkResponse { } public static class UpdateBackOrderLinkRequest { public UUID Guid = null; public String CommissionNumber = null; public String Vin = null; public String GasId = null; public Boolean IsMbUkUser = null; public Boolean NonMatchingMotabilityCarSelected = null; public UUID getGuid() { return Guid; } public UpdateBackOrderLinkRequest setGuid(UUID value) { this.Guid = value; return this; } public String getCommissionNumber() { return CommissionNumber; } public UpdateBackOrderLinkRequest setCommissionNumber(String value) { this.CommissionNumber = value; return this; } public String getVin() { return Vin; } public UpdateBackOrderLinkRequest setVin(String value) { this.Vin = value; return this; } public String getGasId() { return GasId; } public UpdateBackOrderLinkRequest setGasId(String value) { this.GasId = value; return this; } public Boolean getIsMbUkUser() { return IsMbUkUser; } public UpdateBackOrderLinkRequest setIsMbUkUser(Boolean value) { this.IsMbUkUser = value; return this; } public Boolean isNonMatchingMotabilityCarSelected() { return NonMatchingMotabilityCarSelected; } public UpdateBackOrderLinkRequest setNonMatchingMotabilityCarSelected(Boolean value) { this.NonMatchingMotabilityCarSelected = value; return this; } } }