Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 3.54 KB

File metadata and controls

48 lines (39 loc) · 3.54 KB

HelloAssoApiV5CommonModelsStatisticsPaymentDetail

Properties

Name Type Description Notes
card_expiration_date datetime Card expiration date (only for card payments) [optional]
order HelloAssoApiV5CommonModelsStatisticsOrderLight [optional]
payer HelloAssoApiV5CommonModelsStatisticsPayer [optional]
items List[HelloAssoApiV5CommonModelsStatisticsPaymentItem] Items linked to this payment [optional]
cash_out_date datetime The date of the cash out [optional]
id_cash_out int The id of the cash out [optional]
cash_out_state HelloAssoApiV5CommonModelsEnumsPaymentCashOutState [optional]
payment_receipt_url str The Payment Receipt Url [optional]
fiscal_receipt_url str The Fiscal Receipt Url [optional]
id int The ID of the payment [optional]
amount int Total Amount of the payment (in cents) [optional]
amount_tip int Tip Amount of the payment (in cents) [optional]
var_date datetime Date of the payment [optional]
payment_means HelloAssoApiV5CommonModelsEnumsPaymentMeans [optional]
installment_number int Indicates the payment number (useful in the case of an order comprising payments with installments) [optional]
state HelloAssoApiV5CommonModelsEnumsPaymentState [optional]
type HelloAssoApiV5CommonModelsEnumsPaymentType [optional]
meta HelloAssoApiV5CommonModelsCommonMetaModel [optional]
payment_off_line_mean HelloAssoApiV5CommonModelsEnumsPaymentMeans [optional]
refund_operations List[HelloAssoApiV5CommonModelsStatisticsRefundOperationLightModel] The refund operations information for the specific payment. [optional]

Example

from helloasso_python.models.hello_asso_api_v5_common_models_statistics_payment_detail import HelloAssoApiV5CommonModelsStatisticsPaymentDetail

# TODO update the JSON string below
json = "{}"
# create an instance of HelloAssoApiV5CommonModelsStatisticsPaymentDetail from a JSON string
hello_asso_api_v5_common_models_statistics_payment_detail_instance = HelloAssoApiV5CommonModelsStatisticsPaymentDetail.from_json(json)
# print the JSON string representation of the object
print(HelloAssoApiV5CommonModelsStatisticsPaymentDetail.to_json())

# convert the object into a dict
hello_asso_api_v5_common_models_statistics_payment_detail_dict = hello_asso_api_v5_common_models_statistics_payment_detail_instance.to_dict()
# create an instance of HelloAssoApiV5CommonModelsStatisticsPaymentDetail from a dict
hello_asso_api_v5_common_models_statistics_payment_detail_from_dict = HelloAssoApiV5CommonModelsStatisticsPaymentDetail.from_dict(hello_asso_api_v5_common_models_statistics_payment_detail_dict)

[Back to Model list] [Back to API list] [Back to README]