@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
16 lines • 454 B
TypeScript
import { ISource } from '../core/index.js';
import { IApplication } from './index.js';
export interface IApplicationReference {
application: Partial<IApplication> & ISource;
}
export interface IApplicationReferences {
/**
* References array of type [[IApplicationReference]]
*/
references: IApplicationReference[];
/**
* Link to this resource
*/
self?: string;
}
//# sourceMappingURL=IApplicationReference.d.ts.map