Name | Type | Description | Notes |
---|---|---|---|
items | List[RpmeVariable] | [optional] [readonly] | |
page | int | [optional] | |
total_items | int | [optional] |
from data_bridges_client.models.rpme_variable_paged_result import RpmeVariablePagedResult
# TODO update the JSON string below
json = "{}"
# create an instance of RpmeVariablePagedResult from a JSON string
rpme_variable_paged_result_instance = RpmeVariablePagedResult.from_json(json)
# print the JSON string representation of the object
print(RpmeVariablePagedResult.to_json())
# convert the object into a dict
rpme_variable_paged_result_dict = rpme_variable_paged_result_instance.to_dict()
# create an instance of RpmeVariablePagedResult from a dict
rpme_variable_paged_result_from_dict = RpmeVariablePagedResult.from_dict(rpme_variable_paged_result_dict)