github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/LodgingCharge.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package definitions 5 6 // LodgingCharge represents class LodgingCharge 7 type LodgingCharge struct { 8 ChargeAmount *int64 `json:"chargeAmount,omitempty"` 9 ChargeAmountCurrencyCode *string `json:"chargeAmountCurrencyCode,omitempty"` 10 ChargeType *string `json:"chargeType,omitempty"` 11 } 12 13 // NewLodgingCharge constructs a new LodgingCharge 14 func NewLodgingCharge() *LodgingCharge { 15 return &LodgingCharge{} 16 }