/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ /** * A template for a link that can be automatically added to new feature flags. */ export interface ProjectLinkTemplateSchema { /** * The title of the link. * @nullable */ title?: string | null; /** The URL to use as a template. Can contain {{project}} or {{feature}} as placeholders. */ urlTemplate: string; }