/* Options: Date: 2025-12-06 06:18:22 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://1fetch.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PlaceOrderFromQuote.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/quote/order", Verbs="POST") open class PlaceOrderFromQuote : ApiServiceRequest(), IReturn, ILogRequest { /** * Optionally provide your own reference identifier */ @ApiMember(Description="Optionally provide your own reference identifier") var ClientReference:String? = null /** * The quote the order is for */ @ApiMember(Description="The quote the order is for", IsRequired=true) var QuoteId:UUID? = null /** * Set this to true to prevent creating an order and billing for it */ @ApiMember(Description="Set this to true to prevent creating an order and billing for it", IsRequired=true) var Test:Boolean? = null /** * Is your account allows Urgent Orders, you can use this flag to indicate when an Order is urgent. */ @ApiMember(Description="Is your account allows Urgent Orders, you can use this flag to indicate when an Order is urgent.") var IsUrgent:Boolean? = null companion object { private val responseType = PlaceOrderFromQuoteResponse::class.java } override fun getResponseType(): Any? = PlaceOrderFromQuote.responseType } open class PlaceOrderFromQuoteResponse : ApiServiceResponse() { /** * The ID of the order. */ @ApiMember(Description="The ID of the order.") var OrderId:UUID? = null /** * User friendly waybill number */ @ApiMember(Description="User friendly waybill number") var WayBill:String? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open interface ILogRequest { } open class ApiServiceResponse : IServiceResponse { /** * Information about the response. */ @ApiMember(Description="Information about the response.", IsRequired=true) var Description:String? = null /** * Heading or summary of the response. */ @ApiMember(Description="Heading or summary of the response.", IsRequired=true) var Heading:String? = null /** * Did the intended operation for this response complete successfully? */ @ApiMember(DataType="boolean", Description="Did the intended operation for this response complete successfully?", IsRequired=true) var WasSuccessful:Boolean? = null }