Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.47 KB

File metadata and controls

32 lines (23 loc) · 1.47 KB

UKPostCodeQualification

A resource qualification declaring which UK postcode territories the resource is authorized to operate in. Matched against UKPostCodeConstraint on nodes to ensure postal-district compliance.

Properties

Name Type Description Notes
my_code ZoneCodeType
my_extra_codes List[ZoneCodeType] Additional UK postcodes this resource is also qualified to serve, beyond the primary code. [optional]
type_name str The typeName of the object [default to 'UKPostCodeQualification']

Example

from touroptimizer_py_client.models.uk_post_code_qualification import UKPostCodeQualification

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

# convert the object into a dict
uk_post_code_qualification_dict = uk_post_code_qualification_instance.to_dict()
# create an instance of UKPostCodeQualification from a dict
uk_post_code_qualification_from_dict = UKPostCodeQualification.from_dict(uk_post_code_qualification_dict)

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