/* Options: Date: 2025-09-14 16:40:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RefundBookingPayment.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/bookings/{Id}/refund/{PaymentLogId}", Verbs="PUT") @ValidateRequest(Validator="IsAuthenticated") open class RefundBookingPayment : 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.") override var CompanyId:UUID? = null /** * The booking id */ @ApiMember(Description="The booking id", IsRequired=true, ParameterType="path") open var Id:Int? = null /** * The booking payment log id */ @ApiMember(Description="The booking payment log id", IsRequired=true, ParameterType="path") open var PaymentLogId:Int? = null /** * The amount to refund on the checkout. */ @ApiMember(Description="The amount to refund on the checkout.", IsRequired=true) open var Amount:Double? = null /** * Any comments to be saved in log. */ @ApiMember(Description="Any comments to be saved in log.") open var Comments:String? = null } interface ICompany { var CompanyId:UUID? }