feratel-check-api-client 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +159 -0
  4. data/Rakefile +10 -0
  5. data/docs/AgeGroup.md +22 -0
  6. data/docs/AgeGroupTranslation.md +20 -0
  7. data/docs/CheckPoint.md +38 -0
  8. data/docs/CheckPointGroup.md +20 -0
  9. data/docs/CheckPointItem.md +26 -0
  10. data/docs/CheckResourcesApi.md +545 -0
  11. data/docs/CheckResult.md +26 -0
  12. data/docs/CheckState.md +20 -0
  13. data/docs/CheckStateEnum.md +15 -0
  14. data/docs/CheckStateTranslation.md +20 -0
  15. data/docs/CheckpointError.md +22 -0
  16. data/docs/Customer.md +24 -0
  17. data/docs/History.md +18 -0
  18. data/docs/HistoryItem.md +24 -0
  19. data/docs/HistoryItemState.md +26 -0
  20. data/docs/Identification.md +36 -0
  21. data/docs/IdentificationStatus.md +15 -0
  22. data/docs/IdentificationType.md +26 -0
  23. data/docs/IdentificationUsage.md +26 -0
  24. data/docs/IdentificationUsageType.md +15 -0
  25. data/docs/Identifier.md +20 -0
  26. data/docs/IdentifierType.md +15 -0
  27. data/docs/ServiceProvider.md +24 -0
  28. data/docs/ServiceType.md +28 -0
  29. data/docs/ServiceTypeAssignment.md +22 -0
  30. data/docs/ServiceTypeTranslation.md +20 -0
  31. data/docs/ServiceUsage.md +36 -0
  32. data/docs/ServiceUsageType.md +15 -0
  33. data/docs/SystemResourcesApi.md +147 -0
  34. data/docs/TransactError.md +22 -0
  35. data/docs/TransactResult.md +34 -0
  36. data/docs/TransactState.md +20 -0
  37. data/docs/TransactStateEnum.md +15 -0
  38. data/docs/TransactStateTranslation.md +20 -0
  39. data/docs/ValidTransactionInfo.md +20 -0
  40. data/docs/Week.md +30 -0
  41. data/feratel-check-api-client.gemspec +39 -0
  42. data/git_push.sh +57 -0
  43. data/lib/feratel-check-api-client/api/check_resources_api.rb +586 -0
  44. data/lib/feratel-check-api-client/api/system_resources_api.rb +148 -0
  45. data/lib/feratel-check-api-client/api_client.rb +394 -0
  46. data/lib/feratel-check-api-client/api_error.rb +58 -0
  47. data/lib/feratel-check-api-client/configuration.rb +308 -0
  48. data/lib/feratel-check-api-client/models/age_group.rb +255 -0
  49. data/lib/feratel-check-api-client/models/age_group_translation.rb +223 -0
  50. data/lib/feratel-check-api-client/models/check_point.rb +327 -0
  51. data/lib/feratel-check-api-client/models/check_point_group.rb +244 -0
  52. data/lib/feratel-check-api-client/models/check_point_item.rb +271 -0
  53. data/lib/feratel-check-api-client/models/check_result.rb +250 -0
  54. data/lib/feratel-check-api-client/models/check_state.rb +247 -0
  55. data/lib/feratel-check-api-client/models/check_state_enum.rb +82 -0
  56. data/lib/feratel-check-api-client/models/check_state_translation.rb +223 -0
  57. data/lib/feratel-check-api-client/models/checkpoint_error.rb +256 -0
  58. data/lib/feratel-check-api-client/models/customer.rb +262 -0
  59. data/lib/feratel-check-api-client/models/history.rb +216 -0
  60. data/lib/feratel-check-api-client/models/history_item.rb +262 -0
  61. data/lib/feratel-check-api-client/models/history_item_state.rb +250 -0
  62. data/lib/feratel-check-api-client/models/identification.rb +338 -0
  63. data/lib/feratel-check-api-client/models/identification_status.rb +43 -0
  64. data/lib/feratel-check-api-client/models/identification_type.rb +271 -0
  65. data/lib/feratel-check-api-client/models/identification_usage.rb +314 -0
  66. data/lib/feratel-check-api-client/models/identification_usage_type.rb +42 -0
  67. data/lib/feratel-check-api-client/models/identifier.rb +245 -0
  68. data/lib/feratel-check-api-client/models/identifier_type.rb +44 -0
  69. data/lib/feratel-check-api-client/models/service_provider.rb +262 -0
  70. data/lib/feratel-check-api-client/models/service_type.rb +282 -0
  71. data/lib/feratel-check-api-client/models/service_type_assignment.rb +253 -0
  72. data/lib/feratel-check-api-client/models/service_type_translation.rb +223 -0
  73. data/lib/feratel-check-api-client/models/service_usage.rb +380 -0
  74. data/lib/feratel-check-api-client/models/service_usage_type.rb +50 -0
  75. data/lib/feratel-check-api-client/models/transact_error.rb +256 -0
  76. data/lib/feratel-check-api-client/models/transact_result.rb +349 -0
  77. data/lib/feratel-check-api-client/models/transact_state.rb +247 -0
  78. data/lib/feratel-check-api-client/models/transact_state_enum.rb +54 -0
  79. data/lib/feratel-check-api-client/models/transact_state_translation.rb +223 -0
  80. data/lib/feratel-check-api-client/models/valid_transaction_info.rb +223 -0
  81. data/lib/feratel-check-api-client/models/week.rb +268 -0
  82. data/lib/feratel-check-api-client/version.rb +15 -0
  83. data/lib/feratel-check-api-client.rb +75 -0
  84. data/spec/api/check_resources_api_spec.rb +137 -0
  85. data/spec/api/system_resources_api_spec.rb +59 -0
  86. data/spec/models/age_group_spec.rb +48 -0
  87. data/spec/models/age_group_translation_spec.rb +42 -0
  88. data/spec/models/check_point_group_spec.rb +42 -0
  89. data/spec/models/check_point_item_spec.rb +60 -0
  90. data/spec/models/check_point_spec.rb +96 -0
  91. data/spec/models/check_result_spec.rb +60 -0
  92. data/spec/models/check_state_enum_spec.rb +30 -0
  93. data/spec/models/check_state_spec.rb +42 -0
  94. data/spec/models/check_state_translation_spec.rb +42 -0
  95. data/spec/models/checkpoint_error_spec.rb +48 -0
  96. data/spec/models/customer_spec.rb +54 -0
  97. data/spec/models/history_item_spec.rb +54 -0
  98. data/spec/models/history_item_state_spec.rb +60 -0
  99. data/spec/models/history_spec.rb +36 -0
  100. data/spec/models/identification_spec.rb +90 -0
  101. data/spec/models/identification_status_spec.rb +30 -0
  102. data/spec/models/identification_type_spec.rb +60 -0
  103. data/spec/models/identification_usage_spec.rb +60 -0
  104. data/spec/models/identification_usage_type_spec.rb +30 -0
  105. data/spec/models/identifier_spec.rb +42 -0
  106. data/spec/models/identifier_type_spec.rb +30 -0
  107. data/spec/models/service_provider_spec.rb +54 -0
  108. data/spec/models/service_type_assignment_spec.rb +48 -0
  109. data/spec/models/service_type_spec.rb +66 -0
  110. data/spec/models/service_type_translation_spec.rb +42 -0
  111. data/spec/models/service_usage_spec.rb +90 -0
  112. data/spec/models/service_usage_type_spec.rb +30 -0
  113. data/spec/models/transact_error_spec.rb +48 -0
  114. data/spec/models/transact_result_spec.rb +84 -0
  115. data/spec/models/transact_state_enum_spec.rb +30 -0
  116. data/spec/models/transact_state_spec.rb +42 -0
  117. data/spec/models/transact_state_translation_spec.rb +42 -0
  118. data/spec/models/valid_transaction_info_spec.rb +42 -0
  119. data/spec/models/week_spec.rb +72 -0
  120. data/spec/spec_helper.rb +111 -0
  121. metadata +255 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 71d93e3b6926a37740c482d9df4ad9f43a2df46bc9d435496812e46afbfa0abd
4
+ data.tar.gz: 118728de7307caecd6995f3e21da048590c145ae836ecbb0b99d574621a380b8
5
+ SHA512:
6
+ metadata.gz: 3692d5649c7ebf93f4ee237430855047dc4eb3ff26e09b6246af94197bd0e4f33559992772f70df134bee15baa66faf1378de79ad3f740337d4f7be4d7015236
7
+ data.tar.gz: 2476dab29906f74d1efb41839c66418892d0cdb52e88ad206c6cd1b582a7026cdcc4ec06e0f8b8822fb1e2a478b15302b9e759e985f0eb1b6befdde525d1b22f
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development, :test do
6
+ gem 'rake', '~> 13.0.1'
7
+ gem 'pry-byebug'
8
+ gem 'rubocop', '~> 0.66.0'
9
+ end
data/README.md ADDED
@@ -0,0 +1,159 @@
1
+ # feratel-check-api-client
2
+
3
+ FeratelCheckApiClient - the Ruby gem for the CheckAPI Standard
4
+
5
+ This documentation describes your available CheckAPI REST services: Get your checkpoints and their details, check the permission of a customer's ID, take a look at your checkpoint's history - everything a checkpoint needs can be found here in one place.
6
+
7
+ Please look at the descriptions in each service below.
8
+
9
+ <div id=\"authorize-information-wrap\"><h1>Authorize</h1><p>You can use this automated authentication to try out your activated methods - just click „Authorize“, enter CardAPI credentials and have a try! You received the CardAPI username and password via e-mail – credentials are different from your developer-portal credentials. Authentication is based on OAUTH2 (implicit grant flow) and needs to be implemented and called prior to using any API method.
10
+
11
+ <b>CLIENT_ID</b><br>The client ID is pre-filled automatically according to the chosen application. You can find your available client IDs in the \"Applications\" - Area.
12
+
13
+ <b>GRANT_TYPE</b><br>With grant_type=password you get an access-token and a refresh-token for your request. The received access token can be used for 10 minutes, there are two ways to renew it. Either you can send the same request again or you can use the grant_type=refresh_token. The refresh token needs to be used every 30 minutes and can provide new access tokens for 10 hours without using your credentials.</p></div>
14
+
15
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
16
+
17
+ - API version: 1.17.0
18
+ - Package version: 1.0.0
19
+ - Generator version: 7.8.0
20
+ - Build package: org.openapitools.codegen.languages.RubyClientCodegen
21
+
22
+ ## Installation
23
+
24
+ ### Build a gem
25
+
26
+ To build the Ruby code into a gem:
27
+
28
+ ```shell
29
+ gem build feratel-check-api-client.gemspec
30
+ ```
31
+
32
+ Then either install the gem locally:
33
+
34
+ ```shell
35
+ gem install ./feratel-check-api-client-1.0.0.gem
36
+ ```
37
+
38
+ (for development, run `gem install --dev ./feratel-check-api-client-1.0.0.gem` to install the development dependencies)
39
+
40
+ or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
41
+
42
+ Finally add this to the Gemfile:
43
+
44
+ gem 'feratel-check-api-client', '~> 1.0.0'
45
+
46
+ ### Install from Git
47
+
48
+ If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
49
+
50
+ gem 'feratel-check-api-client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
51
+
52
+ ### Include the Ruby code directly
53
+
54
+ Include the Ruby code directly using `-I` as follows:
55
+
56
+ ```shell
57
+ ruby -Ilib script.rb
58
+ ```
59
+
60
+ ## Getting Started
61
+
62
+ Please follow the [installation](#installation) procedure and then run the following code:
63
+
64
+ ```ruby
65
+ # Load the gem
66
+ require 'feratel-check-api-client'
67
+
68
+ # Setup authorization
69
+ FeratelCheckApiClient.configure do |config|
70
+ # Configure OAuth2 access token for authorization: oauth
71
+ config.access_token = 'YOUR ACCESS TOKEN'
72
+ # Configure a proc to get access tokens in lieu of the static access_token configuration
73
+ config.access_token_getter = -> { 'YOUR TOKEN GETTER PROC' }
74
+ end
75
+
76
+ api_instance = FeratelCheckApiClient::CheckResourcesApi.new
77
+ tenant_id = 'tenant_id_example' # String | Code of target tenant
78
+ check_point_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | ID of CheckPoint
79
+ opts = {
80
+ identifier: 'identifier_example' # String | The Identifier is part of the customer's QR-code / barcode.<br>After scanning this code, provide the complete code-content without trimming!
81
+ }
82
+
83
+ begin
84
+ #check
85
+ result = api_instance.v1_tenant_id_secure_checkpoints_check_point_id_check_get(tenant_id, check_point_id, opts)
86
+ p result
87
+ rescue FeratelCheckApiClient::ApiError => e
88
+ puts "Exception when calling CheckResourcesApi->v1_tenant_id_secure_checkpoints_check_point_id_check_get: #{e}"
89
+ end
90
+
91
+ ```
92
+
93
+ ## Documentation for API Endpoints
94
+
95
+ All URIs are relative to *http://localhost*
96
+
97
+ Class | Method | HTTP request | Description
98
+ ------------ | ------------- | ------------- | -------------
99
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_check_get**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_check_get) | **GET** /v1/{tenantId}/secure/checkpoints/{checkPointId}/check | check
100
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_check_post**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_check_post) | **POST** /v1/{tenantId}/secure/checkpoints/{checkPointId}/check | check and transaction
101
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_check_service_type_id_get**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_check_service_type_id_get) | **GET** /v1/{tenantId}/secure/checkpoints/{checkPointId}/check/{serviceTypeId} | check based on service
102
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_check_service_type_id_post**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_check_service_type_id_post) | **POST** /v1/{tenantId}/secure/checkpoints/{checkPointId}/check/{serviceTypeId} | check based on service and transaction
103
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_get**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_get) | **GET** /v1/{tenantId}/secure/checkpoints/{checkPointId} | checkpoint details
104
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_check_point_id_history_get**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_check_point_id_history_get) | **GET** /v1/{tenantId}/secure/checkpoints/{checkPointId}/history | transaction history
105
+ *FeratelCheckApiClient::CheckResourcesApi* | [**v1_tenant_id_secure_checkpoints_get**](docs/CheckResourcesApi.md#v1_tenant_id_secure_checkpoints_get) | **GET** /v1/{tenantId}/secure/checkpoints | list of checkpoints
106
+ *FeratelCheckApiClient::SystemResourcesApi* | [**v1_tenant_id_secure_system_checkpoint_errors_get**](docs/SystemResourcesApi.md#v1_tenant_id_secure_system_checkpoint_errors_get) | **GET** /v1/{tenantId}/secure/system/checkpointErrors | provides all errors related to the CheckAPI
107
+ *FeratelCheckApiClient::SystemResourcesApi* | [**v1_tenant_id_secure_system_transact_errors_get**](docs/SystemResourcesApi.md#v1_tenant_id_secure_system_transact_errors_get) | **GET** /v1/{tenantId}/secure/system/transactErrors | provides all transactErrors related to the CheckAPI
108
+
109
+
110
+ ## Documentation for Models
111
+
112
+ - [FeratelCheckApiClient::AgeGroup](docs/AgeGroup.md)
113
+ - [FeratelCheckApiClient::AgeGroupTranslation](docs/AgeGroupTranslation.md)
114
+ - [FeratelCheckApiClient::CheckPoint](docs/CheckPoint.md)
115
+ - [FeratelCheckApiClient::CheckPointGroup](docs/CheckPointGroup.md)
116
+ - [FeratelCheckApiClient::CheckPointItem](docs/CheckPointItem.md)
117
+ - [FeratelCheckApiClient::CheckResult](docs/CheckResult.md)
118
+ - [FeratelCheckApiClient::CheckState](docs/CheckState.md)
119
+ - [FeratelCheckApiClient::CheckStateEnum](docs/CheckStateEnum.md)
120
+ - [FeratelCheckApiClient::CheckStateTranslation](docs/CheckStateTranslation.md)
121
+ - [FeratelCheckApiClient::CheckpointError](docs/CheckpointError.md)
122
+ - [FeratelCheckApiClient::Customer](docs/Customer.md)
123
+ - [FeratelCheckApiClient::History](docs/History.md)
124
+ - [FeratelCheckApiClient::HistoryItem](docs/HistoryItem.md)
125
+ - [FeratelCheckApiClient::HistoryItemState](docs/HistoryItemState.md)
126
+ - [FeratelCheckApiClient::Identification](docs/Identification.md)
127
+ - [FeratelCheckApiClient::IdentificationStatus](docs/IdentificationStatus.md)
128
+ - [FeratelCheckApiClient::IdentificationType](docs/IdentificationType.md)
129
+ - [FeratelCheckApiClient::IdentificationUsage](docs/IdentificationUsage.md)
130
+ - [FeratelCheckApiClient::IdentificationUsageType](docs/IdentificationUsageType.md)
131
+ - [FeratelCheckApiClient::Identifier](docs/Identifier.md)
132
+ - [FeratelCheckApiClient::IdentifierType](docs/IdentifierType.md)
133
+ - [FeratelCheckApiClient::ServiceProvider](docs/ServiceProvider.md)
134
+ - [FeratelCheckApiClient::ServiceType](docs/ServiceType.md)
135
+ - [FeratelCheckApiClient::ServiceTypeAssignment](docs/ServiceTypeAssignment.md)
136
+ - [FeratelCheckApiClient::ServiceTypeTranslation](docs/ServiceTypeTranslation.md)
137
+ - [FeratelCheckApiClient::ServiceUsage](docs/ServiceUsage.md)
138
+ - [FeratelCheckApiClient::ServiceUsageType](docs/ServiceUsageType.md)
139
+ - [FeratelCheckApiClient::TransactError](docs/TransactError.md)
140
+ - [FeratelCheckApiClient::TransactResult](docs/TransactResult.md)
141
+ - [FeratelCheckApiClient::TransactState](docs/TransactState.md)
142
+ - [FeratelCheckApiClient::TransactStateEnum](docs/TransactStateEnum.md)
143
+ - [FeratelCheckApiClient::TransactStateTranslation](docs/TransactStateTranslation.md)
144
+ - [FeratelCheckApiClient::ValidTransactionInfo](docs/ValidTransactionInfo.md)
145
+ - [FeratelCheckApiClient::Week](docs/Week.md)
146
+
147
+
148
+ ## Documentation for Authorization
149
+
150
+
151
+ Authentication schemes defined for the API:
152
+ ### oauth
153
+
154
+
155
+ - **Type**: OAuth
156
+ - **Flow**: implicit
157
+ - **Authorization URL**: https://idp.feratel.com/auth/realms/card-api/protocol/openid-connect/auth
158
+ - **Scopes**: N/A
159
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ begin
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task default: :spec
8
+ rescue LoadError
9
+ # no rspec available
10
+ end
data/docs/AgeGroup.md ADDED
@@ -0,0 +1,22 @@
1
+ # FeratelCheckApiClient::AgeGroup
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **translations** | [**Array&lt;AgeGroupTranslation&gt;**](AgeGroupTranslation.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'feratel-check-api-client'
15
+
16
+ instance = FeratelCheckApiClient::AgeGroup.new(
17
+ id: null,
18
+ name: null,
19
+ translations: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,20 @@
1
+ # FeratelCheckApiClient::AgeGroupTranslation
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **code** | **String** | | [optional] |
8
+ | **language** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'feratel-check-api-client'
14
+
15
+ instance = FeratelCheckApiClient::AgeGroupTranslation.new(
16
+ code: null,
17
+ language: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,38 @@
1
+ # FeratelCheckApiClient::CheckPoint
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **active** | **Boolean** | | [optional] |
9
+ | **code** | **String** | | [optional] |
10
+ | **entry** | **Boolean** | | [optional] |
11
+ | **exit** | **Boolean** | | [optional] |
12
+ | **group** | [**CheckPointGroup**](CheckPointGroup.md) | | [optional] |
13
+ | **name** | **String** | | [optional] |
14
+ | **number** | **Integer** | | [optional] |
15
+ | **open_permanently** | **Boolean** | | [optional] |
16
+ | **service_type_assignments** | [**Array&lt;ServiceTypeAssignment&gt;**](ServiceTypeAssignment.md) | | [optional] |
17
+ | **tenant** | **String** | | [optional] |
18
+
19
+ ## Example
20
+
21
+ ```ruby
22
+ require 'feratel-check-api-client'
23
+
24
+ instance = FeratelCheckApiClient::CheckPoint.new(
25
+ id: null,
26
+ active: null,
27
+ code: null,
28
+ entry: null,
29
+ exit: null,
30
+ group: null,
31
+ name: null,
32
+ number: null,
33
+ open_permanently: null,
34
+ service_type_assignments: null,
35
+ tenant: null
36
+ )
37
+ ```
38
+
@@ -0,0 +1,20 @@
1
+ # FeratelCheckApiClient::CheckPointGroup
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'feratel-check-api-client'
14
+
15
+ instance = FeratelCheckApiClient::CheckPointGroup.new(
16
+ id: null,
17
+ name: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,26 @@
1
+ # FeratelCheckApiClient::CheckPointItem
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **active** | **Boolean** | | [optional] |
9
+ | **code** | **String** | | [optional] |
10
+ | **name** | **String** | | [optional] |
11
+ | **tenant** | **String** | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'feratel-check-api-client'
17
+
18
+ instance = FeratelCheckApiClient::CheckPointItem.new(
19
+ id: null,
20
+ active: null,
21
+ code: null,
22
+ name: null,
23
+ tenant: null
24
+ )
25
+ ```
26
+