interface Item {
    description?: Description;
    event?: EventObject[];
    id?: string;
    name?: string;
    protocolProfileBehavior?: unknown;
    request: RequestObject;
    response?: ResponseObject[];
    variable?: Variable[];
}

Properties

description?: Description
event?: EventObject[]
id?: string
name?: string
protocolProfileBehavior?: unknown
request: RequestObject
response?: ResponseObject[]
variable?: Variable[]