/* Options: Date: 2024-07-03 13:23:45 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RefundBookingPayment.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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.") var CompanyId:UUID? = null /** * The booking id */ @ApiMember(Description="The booking id", IsRequired=true, ParameterType="path") var Id:Int? = null /** * The booking payment log id */ @ApiMember(Description="The booking payment log id", IsRequired=true, ParameterType="path") var PaymentLogId:Int? = null /** * The amount to refund on the checkout. */ @ApiMember(Description="The amount to refund on the checkout.", IsRequired=true) var Amount:Double? = null /** * Any comments to be saved in log. */ @ApiMember(Description="Any comments to be saved in log.") var Comments:String? = null } open interface ICompany { var CompanyId:UUID? }