# DocumentPayment ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **amount** | **int** | | **document_id** | **int** | | **id** | **int** | | [optional] [readonly] **is_overdue_fee** | **bool** | | [optional] **login_id** | **int** | | [optional] [readonly] **notice** | **str** | | [optional] [default to ''] **payment_at** | **date** | | [optional] **type** | **str** | | [optional] [default to ''] **provider** | **str** | | [optional] [default to ''] **reference** | **str** | | [optional] [default to ''] ## Example ```python from easybill_generated_async.models.document_payment import DocumentPayment # TODO update the JSON string below json = "{}" # create an instance of DocumentPayment from a JSON string document_payment_instance = DocumentPayment.from_json(json) # print the JSON string representation of the object print(DocumentPayment.to_json()) # convert the object into a dict document_payment_dict = document_payment_instance.to_dict() # create an instance of DocumentPayment from a dict document_payment_from_dict = DocumentPayment.from_dict(document_payment_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)