wallee
Version:
TypeScript/JavaScript client for wallee
65 lines (64 loc) • 1.7 kB
TypeScript
import { CreationEntityState } from "./CreationEntityState";
import { Feature } from "./Feature";
declare class Scope {
/**
* The domain name that belongs to the scope.
*/
'domainName'?: string;
/**
* The list of features that are active in the scope.
*/
'features'?: Array<Feature>;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The name identifying the scope in e.g. URLs.
*/
'machineName'?: string;
/**
* The name used to identify the scope.
*/
'name'?: string;
/**
* The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
*/
'plannedPurgeDate'?: Date;
/**
* The port where the scope can be accessed.
*/
'port'?: number;
/**
* Whether the scope supports SSL.
*/
'sslActive'?: boolean;
/**
* The object's current state.
*/
'state'?: CreationEntityState;
/**
* The themes that determine the look and feel of the scope's user interface. A fall-through strategy is applied when building the actual theme.
*/
'themes'?: Array<string>;
/**
* The URL where the scope can be accessed.
*/
'url'?: string;
/**
* The version is used for optimistic locking and incremented whenever the object is updated.
*/
'version'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { Scope };