Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

ResponseBase

Properties

Name Type Description Notes
line_index int The line’s index in the zone file. [optional]
type str The type of object in the zone file: * `record` - A resource record. * `control` - A control statement. * `comment` - A line comment. [optional]

Example

from clientapi_cpanel.models.response_base import ResponseBase

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

# convert the object into a dict
response_base_dict = response_base_instance.to_dict()
# create an instance of ResponseBase from a dict
response_base_from_dict = ResponseBase.from_dict(response_base_dict)

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