Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.18 KB

File metadata and controls

29 lines (21 loc) · 1.18 KB

OtpTemplateListResponseData

Properties

Name Type Description Notes
list List[TwoFaTemplateResource] [optional]
total int A total number of templates that meet the search conditions. [optional]

Example

from bsg_api.models.otp_template_list_response_data import OtpTemplateListResponseData

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

# convert the object into a dict
otp_template_list_response_data_dict = otp_template_list_response_data_instance.to_dict()
# create an instance of OtpTemplateListResponseData from a dict
otp_template_list_response_data_from_dict = OtpTemplateListResponseData.from_dict(otp_template_list_response_data_dict)

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