import { SdPlatformPolicyCommonAliasesModel } from "../commons/SdPlatformPolicyCommons"; /** * DTO for creating a model ownership transfer notification. */ export interface SdPlatformRequestModelTransferCreate { /** * Id of the receiving user. */ receiver_id: string; /** * Optional aliases of policies, which the user who initiates the model ownership * transfer asks to be shared back by the receiving user upon acceptance. */ policies?: Array; } //# sourceMappingURL=SdPlatformRequestModelTransfer.d.ts.map