You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MyAllocator endpoint name to proxy the request to.
payload
object
Request payload to forward to MyAllocator. Opaque JSON body.
Example
fromcloudbeds_pms.models.myallocator_proxy_request_schemaimportMyallocatorProxyRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of MyallocatorProxyRequestSchema from a JSON stringmyallocator_proxy_request_schema_instance=MyallocatorProxyRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(MyallocatorProxyRequestSchema.to_json())
# convert the object into a dictmyallocator_proxy_request_schema_dict=myallocator_proxy_request_schema_instance.to_dict()
# create an instance of MyallocatorProxyRequestSchema from a dictmyallocator_proxy_request_schema_from_dict=MyallocatorProxyRequestSchema.from_dict(myallocator_proxy_request_schema_dict)