/** @description Basic structure for credentials */
export classCredentials{
/** @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;
}