Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 997 Bytes

File metadata and controls

30 lines (21 loc) · 997 Bytes

CustomCredentials

Properties

Name Type Description Notes
webhook_url str Webhook URL for implementation
api_key str Webhook secret key

Example

from rankvectors.models.custom_credentials import CustomCredentials

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

# convert the object into a dict
custom_credentials_dict = custom_credentials_instance.to_dict()
# create an instance of CustomCredentials from a dict
custom_credentials_from_dict = CustomCredentials.from_dict(custom_credentials_dict)

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