Files
interfaces/ts/data/property.ts

11 lines
276 B
TypeScript
Raw Normal View History

2022-07-19 15:52:49 +02:00
import * as plugins from '../ul-interfaces.plugins.js';
2023-04-03 13:40:56 +02:00
export class IUplinkProperty {
wgOrgIdRef: string;
wgPropertyIdRef: string;
2022-07-19 15:52:49 +02:00
name: string;
type: 'website' | 'app' | 'api' | 'other';
access: 'private' | 'public' | 'auth';
2023-04-03 13:40:56 +02:00
checkCollectionIdRefs: string[];
2023-04-03 13:52:27 +02:00
}