Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

BasicAuthProfile

Properties

Name Type Description Notes
active bool [optional]
params List[Params] [optional]
links List[APILink] [optional]

Example

from cyperf.models.basic_auth_profile import BasicAuthProfile

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

# convert the object into a dict
basic_auth_profile_dict = basic_auth_profile_instance.to_dict()
# create an instance of BasicAuthProfile from a dict
basic_auth_profile_from_dict = BasicAuthProfile.from_dict(basic_auth_profile_dict)

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