Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

PlatformLimitRequest.md

File metadata and controls

35 lines (26 loc) · 1.13 KB

PlatformLimitRequest

Platform Limit request

Properties

Name Type Description Notes
applies_to str
based_on str
based_on_value str
description str [optional]
limits int
scope str

Example

from wordlift_client.models.platform_limit_request import PlatformLimitRequest

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

# convert the object into a dict
platform_limit_request_dict = platform_limit_request_instance.to_dict()
# create an instance of PlatformLimitRequest from a dict
platform_limit_request_from_dict = PlatformLimitRequest.from_dict(platform_limit_request_dict)

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