Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

File metadata and controls

35 lines (26 loc) · 1.58 KB

PayloadInner

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]
data_b64 List[str] The resource record’s content, encoded to base64. [optional]
dname_b64 str The resource record’s owner, encoded to base64. A base64-decoded owner that lacks a trailing period (`.`) is a subdomain of the zone. [optional]
record_type str The resource record’s type. [optional]
ttl int The resource record’s TTL (Time-to-Live). [optional]
text_b64 str The line’s text, encoded to base64. [optional]

Example

from clientapi_cpanel.models.payload_inner import PayloadInner

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

# convert the object into a dict
payload_inner_dict = payload_inner_instance.to_dict()
# create an instance of PayloadInner from a dict
payload_inner_from_dict = PayloadInner.from_dict(payload_inner_dict)

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