/**
 * ISource can be used when an id is mandantory.
 */
export interface ISource {
    /**
     * Unique identifier
     */
    id: string;
    /**
     * Name of the resource
     */
    name?: string;
    /**
     * Link to the resource
     */
    self?: string;
}
//# sourceMappingURL=ISource.d.ts.map