@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
32 lines (31 loc) • 541 B
TypeScript
/**
*
* @export
* @interface ExternalLoginAuthRequest
*/
export interface ExternalLoginAuthRequest {
/**
*
* @type {string}
* @memberof ExternalLoginAuthRequest
*/
username?: string;
/**
*
* @type {string}
* @memberof ExternalLoginAuthRequest
*/
email?: string;
/**
*
* @type {string}
* @memberof ExternalLoginAuthRequest
*/
password: string;
/**
*
* @type {string}
* @memberof ExternalLoginAuthRequest
*/
locale?: string;
}