Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.35 KB

VrpConfiguration.md

File metadata and controls

32 lines (24 loc) · 1.35 KB

VrpConfiguration

Properties

Name Type Description Notes
maximum_individual_amount Amount Maximum amount per transaction [optional]
maximum_cumulative_amount Amount Maximum cumulative amount [optional]
maximum_cumulative_number_of_payments int Maximum cumulative number of payments [optional]
periodic_limits List[VrpPeriodicLimit] [optional]
recurring_payment_category str Payment Category with allowed values: ONGOING, SUBSCRIPTION [optional]

Example

from yapily.models.vrp_configuration import VrpConfiguration

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

# convert the object into a dict
vrp_configuration_dict = vrp_configuration_instance.to_dict()
# create an instance of VrpConfiguration from a dict
vrp_configuration_from_dict = VrpConfiguration.from_dict(vrp_configuration_dict)

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