11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
import * as plugins from '../ul-interfaces.plugins.js';
|
|
|
|
export class IUplinkProperty {
|
|
wgOrgIdRef: string;
|
|
wgPropertyIdRef: string;
|
|
name: string;
|
|
type: 'website' | 'app' | 'api' | 'other';
|
|
access: 'private' | 'public' | 'auth';
|
|
checkCollectionIdRefs: string[];
|
|
}
|