/* istanbul ignore file */
/**
 * This file is generated by the openapi-ts-generator
 * #endpoints-ts.hbs
 * For issues or feature request, visit the repo: https://github.com/ikemtz/openapi-ts-generator
 * Do not edit.
 */
/* eslint-disable */
export enum Endpoints {
{{#paths}}
  {{tag}} = '{{endpoint}}',
{{/paths}}
}
export interface IEndpoints {
{{#paths}}
  readonly {{tag}}: string;
{{/paths}}
}
