projects/netgrif-components-core/src/lib/resources/interface/create-case-request-body.ts
Properties |
color |
color:
|
Type : string
|
Optional |
netId |
netId:
|
Type : string
|
StringId of the process from which the new case should be created |
title |
title:
|
Type : string
|
Title of the new case |
export interface CreateCaseRequestBody {
/**
* Title of the new case
*/
title: string;
/**
* StringId of the process from which the new case should be created
*/
netId: string;
color?: string;
}