/* Options: Date: 2024-07-03 13:18:40 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PaysonCheckout1UpdateStatus.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/payment/payson/v1/updatestatus", Verbs="PUT") public static class PaysonCheckout1UpdateStatus implements ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public UUID CompanyId = null; /** * The booking id. */ @ApiMember(Description="The booking id.") public Integer BookingId = null; /** * The payment token. */ @ApiMember(Description="The payment token.") public String Token = null; public UUID getCompanyId() { return CompanyId; } public PaysonCheckout1UpdateStatus setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getBookingId() { return BookingId; } public PaysonCheckout1UpdateStatus setBookingId(Integer value) { this.BookingId = value; return this; } public String getToken() { return Token; } public PaysonCheckout1UpdateStatus setToken(String value) { this.Token = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }