# ApiConsumer

Represents an API consumer.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**access** | [**ApiConsumerAccess**](ApiConsumerAccess.md) |  | [optional] [default to undefined]
**assignedBranchKey** | **string** | The encoded key of the branch this API consumer is assigned to. | [optional] [default to undefined]
**creationDate** | **string** | The date when the API consumer was created in UTC. | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**id** | **string** | The ID of the API consumer. | [optional] [readonly] [default to undefined]
**lastModifiedDate** | **string** | The last time the API consumer was modified in UTC. | [optional] [readonly] [default to undefined]
**name** | **string** | The API consumer name. | [default to undefined]
**role** | [**RoleIdentifier**](RoleIdentifier.md) |  | [optional] [default to undefined]
**transactionLimits** | **{ [key: string]: number; }** | The API consumer transaction limits. | [optional] [default to undefined]

## Example

```typescript
import { ApiConsumer } from './api';

const instance: ApiConsumer = {
    access,
    assignedBranchKey,
    creationDate,
    encodedKey,
    id,
    lastModifiedDate,
    name,
    role,
    transactionLimits,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
