Name | Type | Description | Notes |
---|---|---|---|
auth_methods | List[AuthMethod] | [optional] | |
next_page | str | [optional] |
from akeyless.models.list_auth_methods_output import ListAuthMethodsOutput
# TODO update the JSON string below
json = "{}"
# create an instance of ListAuthMethodsOutput from a JSON string
list_auth_methods_output_instance = ListAuthMethodsOutput.from_json(json)
# print the JSON string representation of the object
print(ListAuthMethodsOutput.to_json())
# convert the object into a dict
list_auth_methods_output_dict = list_auth_methods_output_instance.to_dict()
# create an instance of ListAuthMethodsOutput from a dict
list_auth_methods_output_from_dict = ListAuthMethodsOutput.from_dict(list_auth_methods_output_dict)