UNPKG

@omnia/fx-models

Version:
13 lines (12 loc) 532 B
import { GuidValue } from "@omnia/fx/internal-do-not-import-from-here/shared"; import { IdentityProviderProperty } from "./IdentityProviderProperty"; import { IdentityTypes } from "./IdentityTypes"; export interface IdentityPropertySyncBindingBase { propertyBindingId: GuidValue; identityType: IdentityTypes; detailProviderId: GuidValue; detailProviderProperty: IdentityProviderProperty; } export interface IdentityPropertySyncBinding extends IdentityPropertySyncBindingBase { propertyDefinitionId: GuidValue; }