Sha256: f687b4a8994ac1415e2f305da0e4e1ab57e1b9d0a1d25cca223bb5e8400c3bfa

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

# Conekta::ApiKeyResponseOnDelete

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **active** | **Boolean** | Indicates if the api key is active | [optional] |
| **created_at** | **Integer** | Unix timestamp in seconds of when the api key was created | [optional] |
| **description** | **String** | A name or brief explanation of what this api key is used for | [optional] |
| **livemode** | **Boolean** | Indicates if the api key is in production | [optional] |
| **prefix** | **String** | The first few characters of the authentication_token | [optional] |
| **id** | **String** | Unique identifier of the api key | [optional] |
| **object** | **String** | Object name, value is 'api_key' | [optional] |
| **deleted** | **Boolean** | Indicates if the api key was deleted | [optional] |
| **role** | **String** | Indicates if the api key is private or public | [optional] |

## Example

```ruby
require 'conekta'

instance = Conekta::ApiKeyResponseOnDelete.new(
  active: true,
  created_at: 1684167881,
  description: online store,
  livemode: false,
  prefix: key_rp,
  id: 64625cc9f3e02c00163f5e4d,
  object: api_key,
  deleted: false,
  role: private
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
conekta-6.0.5 docs/ApiKeyResponseOnDelete.md
conekta-6.0.4 docs/ApiKeyResponseOnDelete.md
conekta-6.0.3 docs/ApiKeyResponseOnDelete.md
conekta-6.0.2 docs/ApiKeyResponseOnDelete.md
conekta-6.0.1 docs/ApiKeyResponseOnDelete.md
conekta-6.0.0 docs/ApiKeyResponseOnDelete.md