/** * @example * { * targetWorkspaceId: "target_workspace_id" * } */ export interface ReplicateVoiceToIsolatedEnvironmentRequestModel { /** ID of the workspace to replicate the voice into. It must belong to the same consolidated billing group as the calling workspace; the target's data residency is derived from that link. */ targetWorkspaceId: string; /** When true (default) the replicated voice keeps the same voice ID in the target residency; set to false to assign a new voice ID. */ preserveVoiceId?: boolean; }