Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.18 KB

InlineResponse20030Result.md

File metadata and controls

34 lines (25 loc) · 2.18 KB

InlineResponse20030Result

Properties

Name Type Description Notes
data List[str] An array of strings representing BoxTrapper message templates. * `blacklist` - BoxTrapper responds with this message when a blacklisted address sends an email. * `verify` - BoxTrapper responds with this message when an address that does not exist on the whitelist or blacklist sends an email. This message requests a response to confirm that the sender is legitimate. * `verifyreleased` - BoxTrapper responds with this message when a person responds to the verify message with an email or a click on the verification link. * `returnverify` - BoxTrapper responds with this message when the verification process fails. [optional]
errors List[str] List of errors if the API failed. [optional]
messages List[str] List of messages generated by the API. [optional]
metadata object [optional]
status int * `1` - Success * `0` - Failed. Check the `errors` field for more details. [optional]
warnings List[str] List of warnings generated by the API. Warnings describe non-critical failures or other problematic conditions noted while running an API. [optional]

Example

from clientapi_cpanel.models.inline_response20030_result import InlineResponse20030Result

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

# convert the object into a dict
inline_response20030_result_dict = inline_response20030_result_instance.to_dict()
# create an instance of InlineResponse20030Result from a dict
inline_response20030_result_from_dict = InlineResponse20030Result.from_dict(inline_response20030_result_dict)

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