/** * This is the output model coming from skyscraper services * @export * @class LoginVerificationOutputModel */ export declare class LoginVerificationOutputModel { /** * @type {number} * @memberof LoginVerificationOutputModel */ jobId: number; /** * @type {string} * @memberof LoginVerificationOutputModel */ operationStatus?: string | undefined; /** * @type {string} * @memberof LoginVerificationOutputModel */ message?: string | undefined; /** * @type {boolean} * @memberof LoginVerificationOutputModel */ loginSuccess?: boolean | undefined; }