/* tslint:disable */ /* eslint-disable */ /** * consumers * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { ApiConsumerAccess } from './api-consumer-access'; // May contain unused imports in some cases // @ts-ignore import type { RoleIdentifier } from './role-identifier'; /** * Represents an API consumer. */ export interface ApiConsumer { access?: ApiConsumerAccess; /** * The encoded key of the branch this API consumer is assigned to. */ assignedBranchKey?: string; /** * The date when the API consumer was created in UTC. */ creationDate?: string; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The ID of the API consumer. */ id?: string; /** * The last time the API consumer was modified in UTC. */ lastModifiedDate?: string; /** * The API consumer name. */ name: string; role?: RoleIdentifier; /** * The API consumer transaction limits. */ transactionLimits?: { [key: string]: number }; }