/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * clientId: "client_id", * clientSecret: "client_secret" * } */ export interface AuthGetTokenRequest { /** The client ID of the application */ clientId: string; /** The client secret of the application */ clientSecret: string; }