Files
Gainsight/Scripts/credlib.py

7 lines
208 B
Python
Raw Normal View History

class credential:
def __init__(self, hostname, username, password, apikey):
self.hostname = hostname
self.username = username
self.password = password
self.apikey = apikey