Variable $ListConversationsViewModelConst
$ListConversationsViewModel: {
description: "View Model for the List Conversations Feature. Represents all conversations in a given research context.";
properties: {
code: {
isRequired: true;
type: "number";
};
conversations: {
contains: {
type: "Conversation";
};
isRequired: true;
type: "array";
};
errorCode: {
contains: readonly [{
type: "number";
}, {
type: "null";
}];
type: "any-of";
};
errorMessage: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
errorName: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
errorType: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
research_context_id: {
description: "Research context id for which the conversations are to be listed.";
isRequired: true;
type: "number";
};
status: {
isRequired: true;
type: "boolean";
};
};
} = ...
Type declaration
Readonly description: "View Model for the List Conversations Feature. Represents all conversations in a given research context."
Readonly properties: {
code: {
isRequired: true;
type: "number";
};
conversations: {
contains: {
type: "Conversation";
};
isRequired: true;
type: "array";
};
errorCode: {
contains: readonly [{
type: "number";
}, {
type: "null";
}];
type: "any-of";
};
errorMessage: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
errorName: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
errorType: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
};
research_context_id: {
description: "Research context id for which the conversations are to be listed.";
isRequired: true;
type: "number";
};
status: {
isRequired: true;
type: "boolean";
};
}
Readonly code: {
isRequired: true;
type: "number";
}
Readonly isRequired: true
Readonly type: "number"
Readonly conversations: {
contains: {
type: "Conversation";
};
isRequired: true;
type: "array";
}
Readonly contains: {
type: "Conversation";
}
Readonly type: "Conversation"
Readonly isRequired: true
Readonly type: "array"
Readonly errorCode: {
contains: readonly [{
type: "number";
}, {
type: "null";
}];
type: "any-of";
}
Readonly contains: readonly [{
type: "number";
}, {
type: "null";
}]
Readonly type: "any-of"
Readonly errorMessage: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
}
Readonly contains: readonly [{
type: "string";
}, {
type: "null";
}]
Readonly type: "any-of"
Readonly errorName: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
}
Readonly contains: readonly [{
type: "string";
}, {
type: "null";
}]
Readonly type: "any-of"
Readonly errorType: {
contains: readonly [{
type: "string";
}, {
type: "null";
}];
type: "any-of";
}
Readonly contains: readonly [{
type: "string";
}, {
type: "null";
}]
Readonly type: "any-of"
Readonly research_context_id: {
description: "Research context id for which the conversations are to be listed.";
isRequired: true;
type: "number";
}
Readonly description: "Research context id for which the conversations are to be listed."
Readonly isRequired: true
Readonly type: "number"
Readonly status: {
isRequired: true;
type: "boolean";
}
Readonly isRequired: true
Readonly type: "boolean"