mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
14 lines
468 B
TypeScript
14 lines
468 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ChangeRequestOneOrManyCreateSchemaOneOfAction } from './changeRequestOneOrManyCreateSchemaOneOfAction';
|
|
import type { UpsertSegmentSchema } from './upsertSegmentSchema';
|
|
|
|
export type ChangeRequestOneOrManyCreateSchemaOneOf = {
|
|
/** The name of this action. */
|
|
action: ChangeRequestOneOrManyCreateSchemaOneOfAction;
|
|
payload: UpsertSegmentSchema;
|
|
};
|