Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

AddressCountStatus

This indicates the status count of addresses which are at validation stage.

Properties

Name Type Description Notes
success float The number of addresses which have been successfully validated. [optional]
failed float The number of addresses failed at validation due to incorrect entry in the address. [optional]
pending float The number of addresses which are pending and in-queue to be processed. [optional]

Example

from shipping.models.address_count_status import AddressCountStatus

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

# convert the object into a dict
address_count_status_dict = address_count_status_instance.to_dict()
# create an instance of AddressCountStatus from a dict
address_count_status_from_dict = AddressCountStatus.from_dict(address_count_status_dict)

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