UNPKG

wallee

Version:
49 lines (48 loc) 1.55 kB
import { CreationEntityState } from "./CreationEntityState"; import { SpaceAddressCreate } from "./SpaceAddressCreate"; declare class AbstractSpaceUpdate { /** * The date and time when the object was last modified. */ 'lastModifiedDate'?: Date; /** * The name used to identify the space. */ 'name'?: string; /** * The address that is used in communication with clients for example in emails, documents, etc. */ 'postalAddress'?: SpaceAddressCreate; /** * The currency that is used to display aggregated amounts in the space. */ 'primaryCurrency'?: string; /** * The maximum number of API requests that are accepted within two minutes. This limit can only be changed with special privileges. */ 'requestLimit'?: number; /** * The object's current state. */ 'state'?: CreationEntityState; /** * The email address that will receive messages about technical issues and errors that occur in the space. */ 'technicalContactAddresses'?: Array<string>; /** * The time zone that is used to schedule and run background processes. This does not affect the formatting of dates in the user interface. */ 'timeZone'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { AbstractSpaceUpdate };