Name | Type | Description | Notes |
---|---|---|---|
client_id | str | [optional] | |
store_id | str | [optional] | |
terminal_id | str | [optional] | |
es_key | str | [optional] | |
admin_service | AdminService | [optional] | |
auto_rental_data | AutoRentalData | [optional] | |
healthcare_data | HealthcareDataWeb | [optional] | |
bill_to | BillTo | [optional] | |
card | Card | [optional] | |
cc_auth_service | CCAuthService | [optional] | |
cc_capture_service | CCCaptureService | [optional] | |
cc_credit_service | CCCreditService | [optional] | |
cc_followup_service | CCFollowupService | [optional] | |
dcc_service | DccService | [optional] | |
dcc | DccInfo | [optional] | |
check | Check | [optional] | |
clerk_id | str | [optional] | |
client_metadata | ClientMetadata | [optional] | |
comments | str | [optional] | |
discount_service | DiscountService | [optional] | |
efv_options | EfvOptions | [optional] | |
fleet_data | FleetData | [optional] | |
fraud_check_service | FraudCheckService | [optional] | |
inquiry_service | InquiryService | [optional] | |
hotel_data | HotelData | [optional] | |
invoice_discount_detail | List[EIDDetail] | [optional] | |
invoice_service | InvoiceService | [optional] | |
invoice_header | InvoiceHeader | [optional] | |
items | List[Item] | [optional] | |
payments | List[Payment] | [optional] | |
language | str | [optional] | |
loyalty_service | LoyaltyService | [optional] | |
request_incentives | RequestIncentives | [optional] | |
merchant_defined_data | MerchantDefinedData | [optional] | |
magic_cookie | str | [optional] | |
merchant_reference_code | str | [optional] | |
merchant_batch_id | str | [optional] | |
message_service | MessageService | [optional] | |
mobile_service | MobileService | [optional] | |
network_data | NetworkData | [optional] | |
offline_control | OfflineControl | [optional] | |
order_request_id | str | [optional] | |
order_request_token | str | [optional] | |
pos | Pos | [optional] | |
promo_service | PromoService | [optional] | |
purchase_totals | PurchaseTotals | [optional] | |
restaurant_data | RestaurantData | [optional] | |
response_flags | str | [optional] | |
session_key | str | [optional] | |
session_service | SessionService | [optional] | |
ship_from | ShipFrom | [optional] | |
ship_to | ShipTo | [optional] | |
token_create_service | TokenCreateService | [optional] | |
vend_control_service | VendControlService | [optional] | |
void_service | VoidService | [optional] | |
tor_service | TORService | [optional] | |
eod_service | EodService | [optional] | |
incentive_service | IncentiveService | [optional] | |
member_data | MemberData | [optional] |
from freedompay_client.models.request_message import RequestMessage
# TODO update the JSON string below
json = "{}"
# create an instance of RequestMessage from a JSON string
request_message_instance = RequestMessage.from_json(json)
# print the JSON string representation of the object
print RequestMessage.to_json()
# convert the object into a dict
request_message_dict = request_message_instance.to_dict()
# create an instance of RequestMessage from a dict
request_message_form_dict = request_message.from_dict(request_message_dict)