/** * DTO for creating a saved state sharing relationship, which shares a policy for accessing a saved state with a receiving user. */ export interface SdPlatformResponseSavedStateSharingCreate { /** * Id of the receiving user. */ user_id: string; /** * Id of the saved state being shared. */ saved_state_id: string; /** * Alias of the policy being shared. */ policy_alias: string; } /** * DTO for creating a saved state sharing relationships, which shares policies for accessing a saved state with a receiving user. */ export interface SdPlatformRequestSavedStateSharingCreateMultiple { /** * Id of the receiving user. */ user_id: string; /** * Id of the saved state being shared. */ saved_state_id: string; /** * Aliases of policies being shared. */ policy_aliases: Array; } //# sourceMappingURL=SdPlatformRequestSavedStateSharing.d.ts.map