UNPKG

@c8y/client

Version:

Client application programming interface to access the Cumulocity IoT-Platform REST services.

19 lines 344 B
/** * This interface holds all fragments which describes a * system option object. */ export interface ISystemOption { /** * Category of option */ category: string; /** * Key of option */ key: string; /** * Value of option */ value?: string; } //# sourceMappingURL=ISystemOption.d.ts.map