UNPKG

@c8y/client

Version:

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

26 lines 489 B
/** * This interface specifies all fragments that describe an event binary. */ export interface IEventBinary { /** * Binary name */ name: string; /** * Link to this resource */ self?: string; /** * The Event that the binary belongs to */ source?: string; /** * Binary file length */ length?: number; /** * MIME type of the binary file */ type?: string; } //# sourceMappingURL=IEventBinary.d.ts.map