Sha256: cb7e6be556ad56146b307fdbd0bd3546ae742e62182ff280da6caa0bf3e5c18d

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

# Conekta::ApiKeyCreateResponse

## 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] |
| **updated_at** | **Integer** | Unix timestamp in seconds of when the api key was last updated | [optional] |
| **deactivated_at** | **Integer** | Unix timestamp in seconds of when the api key was deleted | [optional] |
| **description** | **String** | A name or brief explanation of what this api key is used for | [optional] |
| **id** | **String** | Unique identifier of the api key | [optional] |
| **livemode** | **Boolean** | Indicates if the api key is in production | [optional] |
| **deleted** | **Boolean** | Indicates if the api key was deleted | [optional] |
| **object** | **String** | Object name, value is 'api_key' | [optional] |
| **prefix** | **String** | The first few characters of the authentication_token | [optional] |
| **role** | **String** | Indicates if the api key is private or public | [optional] |
| **authentication_token** | **String** | It is occupied as a user when authenticated with basic authentication, with a blank password. This value will only appear once, in the request to create a new key. Copy and save it in a safe place. | [optional] |

## Example

```ruby
require 'conekta'

instance = Conekta::ApiKeyCreateResponse.new(
  active: true,
  created_at: 1684167881,
  updated_at: 1684167923,
  deactivated_at: null,
  description: online store,
  id: 64625cc9f3e02c00163f5e4d,
  livemode: false,
  deleted: false,
  object: api_key,
  prefix: key_rp,
  role: private,
  authentication_token: key_rpHzxufNgjFCdprEEFZRTKi
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
conekta-6.0.4 docs/ApiKeyCreateResponse.md
conekta-6.0.3 docs/ApiKeyCreateResponse.md
conekta-6.0.2 docs/ApiKeyCreateResponse.md