Payment linked to the item
| Name | Type | Description | Notes |
|---|---|---|---|
| cash_out_state | HelloAssoApiV5CommonModelsEnumsPaymentCashOutState | [optional] | |
| share_amount | int | Amount of the item and extra options payed on this payment term (in cents) | [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] |
from helloasso_python.models.hello_asso_api_v5_common_models_statistics_item_payment import HelloAssoApiV5CommonModelsStatisticsItemPayment
# TODO update the JSON string below
json = "{}"
# create an instance of HelloAssoApiV5CommonModelsStatisticsItemPayment from a JSON string
hello_asso_api_v5_common_models_statistics_item_payment_instance = HelloAssoApiV5CommonModelsStatisticsItemPayment.from_json(json)
# print the JSON string representation of the object
print(HelloAssoApiV5CommonModelsStatisticsItemPayment.to_json())
# convert the object into a dict
hello_asso_api_v5_common_models_statistics_item_payment_dict = hello_asso_api_v5_common_models_statistics_item_payment_instance.to_dict()
# create an instance of HelloAssoApiV5CommonModelsStatisticsItemPayment from a dict
hello_asso_api_v5_common_models_statistics_item_payment_from_dict = HelloAssoApiV5CommonModelsStatisticsItemPayment.from_dict(hello_asso_api_v5_common_models_statistics_item_payment_dict)