import Message, { IMessage } from './../../message.js'; import { IDescriptorBody } from '../../descriptor.js'; export interface IGetUserResponse extends IMessage { attributes: Record[]; } export default class GetUserResponse extends Message { readonly attributes: Record; static readonly DESCRIPTOR_NAME: string; static readonly DESCRIPTOR: IDescriptorBody; constructor(attributes: Record); toJSON(): IGetUserResponse; static fromJSON(data: IGetUserResponse): GetUserResponse; }