/** @description Basic structure for credentials */
export declareclassCredentials{
/** @description The username, used as the unique identifier for the account */
username: string;
/** @description The password that will be sent in future requests */
password: string;
}