7 lines
208 B
Python
7 lines
208 B
Python
|
|
class credential:
|
||
|
|
def __init__(self, hostname, username, password, apikey):
|
||
|
|
self.hostname = hostname
|
||
|
|
self.username = username
|
||
|
|
self.password = password
|
||
|
|
self.apikey = apikey
|