/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { EdgeTokenSchema } from './edgeTokenSchema'; /** * A object containing a list of valid Unleash tokens. */ export interface ValidatedEdgeTokensSchema { /** The list of Unleash token objects. Each object contains the token itself and some additional metadata. */ tokens: EdgeTokenSchema[]; }