import { GeneratedSchema } from './../foundations/index.js'; /** * The organization scopes (permissions) assigned to an application. * * @remarks This is a type for database creation. * @see {@link ApplicationUserConsentOrganizationScope} for the original type. */ export type CreateApplicationUserConsentOrganizationScope = { tenantId?: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the organization scope. */ organizationScopeId: string; }; /** The organization scopes (permissions) assigned to an application. */ export type ApplicationUserConsentOrganizationScope = { tenantId: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the organization scope. */ organizationScopeId: string; }; export type ApplicationUserConsentOrganizationScopeKeys = 'tenantId' | 'applicationId' | 'organizationScopeId'; export declare const ApplicationUserConsentOrganizationScopes: GeneratedSchema;