UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

12 lines (11 loc) 837 B
import { EnterprisePropertySet, GuidValue } from "../models"; export declare class EnterprisePropertySetService { private httpClient; getEnterprisePropertySets: () => Promise<Array<EnterprisePropertySet>>; getEnterprisePropertySetById: (enterprisePropertySetId: GuidValue) => Promise<EnterprisePropertySet>; createEnterprisePropertySet: (enterprisePropertySet: EnterprisePropertySet) => Promise<EnterprisePropertySet>; updateEnterprisePropertySet: (enterprisePropertySet: EnterprisePropertySet) => Promise<EnterprisePropertySet>; removeEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise<void>; terminateEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise<void>; restoreEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise<EnterprisePropertySet>; }