/** * DTO for creating a model sharing relationship, which shares a policy for accessing a model with a receiving user. */ export interface SdPlatformRequestModelSharingCreate { /** * Id of the receiving user. */ user_id: string; /** * Id of the model being shared. */ model_id: string; /** * Alias of the policy being shared. */ policy_alias: string; } /** * DTO for creating a model sharing relationship, which shares a policy for accessing a model with a receiving user. */ export interface SdPlatformRequestModelSharingCreateMultiple { /** * Id of the receiving user. */ user_id: string; /** * Id of the model being shared. */ model_id: string; /** * Alias of the policy being shared. */ policy_aliases: Array; } //# sourceMappingURL=SdPlatformRequestModelSharing.d.ts.map