Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.77 KB

CreateVendorDto.md

File metadata and controls

35 lines (28 loc) · 1.77 KB

CreateVendorDto

Properties

Name Type Description Notes
vendor_token str
net_rate_scheme UidReference [optional]
price_list UidReference [optional]
source_locales List[str] [optional]
target_locales List[str] [optional]
clients List[UidReference] [optional]
domains List[UidReference] [optional]
sub_domains List[UidReference] [optional]
workflow_steps List[UidReference] [optional]

Example

from phrasetms_client.models.create_vendor_dto import CreateVendorDto

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

# convert the object into a dict
create_vendor_dto_dict = create_vendor_dto_instance.to_dict()
# create an instance of CreateVendorDto from a dict
create_vendor_dto_from_dict = CreateVendorDto.from_dict(create_vendor_dto_dict)

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