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