@mos-connection/helper
Version:
Helper functions for the MOS-connection library
26 lines • 776 B
TypeScript
import * as XMLBuilder from 'xmlbuilder';
import { MosMessage } from '../MosMessage';
import { IMOSObjectStatus, IMOSString128 } from '@mos-connection/model';
export declare enum ROElementStatType {
RO = "RO",
STORY = "STORY",
ITEM = "ITEM"
}
export interface ROElementStatOptions {
type: ROElementStatType;
roId: IMOSString128;
storyId?: IMOSString128;
itemId?: IMOSString128;
objId?: IMOSString128;
itemChannel?: IMOSString128;
status: IMOSObjectStatus;
}
export declare class ROElementStat extends MosMessage {
private options;
private time;
/** */
constructor(options: ROElementStatOptions, strict: boolean);
/** */
get messageXMLBlocks(): XMLBuilder.XMLElement;
}
//# sourceMappingURL=roElementStat.d.ts.map