mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The ID of the release plan and which of its milestones to start.
|
|
*/
|
|
export type ChangeRequestCreateSchemaOneOfTwoninePayload = {
|
|
/** The ID of the milestone to start. This ID is an ulid */
|
|
milestoneId: string;
|
|
/** The ID of the release plan. This ID is an ulid */
|
|
planId: string;
|
|
};
|