pier-sdk-ruby 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +141 -0
- data/docs/AuthToken.md +12 -0
- data/docs/BodyAccessToken.md +10 -0
- data/docs/CancelarCartaoResponse.md +11 -0
- data/docs/CartaoApi.md +252 -0
- data/docs/CartaoResponse.md +29 -0
- data/docs/ConsultarCartaoResponse.md +10 -0
- data/docs/ConsultarContaCartaoResponse.md +18 -0
- data/docs/ConsultarContaResponse.md +11 -0
- data/docs/ConsultarExtratoContaResponse.md +23 -0
- data/docs/ConsultarSaldoLimitesResponse.md +23 -0
- data/docs/ContaApi.md +238 -0
- data/docs/ContaCartaoResponse.md +21 -0
- data/docs/ContaResponse.md +41 -0
- data/docs/DesbloquearCartaoResponse.md +9 -0
- data/docs/ExtraInfo.md +8 -0
- data/docs/ExtratoResponse.md +35 -0
- data/docs/PessoaFisicaResponse.md +26 -0
- data/docs/SaldoLimiteResponse.md +39 -0
- data/docs/TokenApi.md +114 -0
- data/git_push.sh +52 -0
- data/lib/pier-sdk-ruby.rb +62 -0
- data/lib/pier-sdk-ruby/api/cartao_api.rb +355 -0
- data/lib/pier-sdk-ruby/api/conta_api.rb +324 -0
- data/lib/pier-sdk-ruby/api/token_api.rb +157 -0
- data/lib/pier-sdk-ruby/api_client.rb +368 -0
- data/lib/pier-sdk-ruby/api_error.rb +40 -0
- data/lib/pier-sdk-ruby/configuration.rb +177 -0
- data/lib/pier-sdk-ruby/models/auth_token.rb +325 -0
- data/lib/pier-sdk-ruby/models/body_access_token.rb +275 -0
- data/lib/pier-sdk-ruby/models/cancelar_cartao_response.rb +286 -0
- data/lib/pier-sdk-ruby/models/cartao_response.rb +736 -0
- data/lib/pier-sdk-ruby/models/consultar_cartao_response.rb +263 -0
- data/lib/pier-sdk-ruby/models/consultar_conta_cartao_response.rb +461 -0
- data/lib/pier-sdk-ruby/models/consultar_conta_response.rb +288 -0
- data/lib/pier-sdk-ruby/models/consultar_extrato_conta_response.rb +588 -0
- data/lib/pier-sdk-ruby/models/consultar_saldo_limites_response.rb +586 -0
- data/lib/pier-sdk-ruby/models/conta_cartao_response.rb +536 -0
- data/lib/pier-sdk-ruby/models/conta_response.rb +1036 -0
- data/lib/pier-sdk-ruby/models/desbloquear_cartao_response.rb +236 -0
- data/lib/pier-sdk-ruby/models/extra_info.rb +211 -0
- data/lib/pier-sdk-ruby/models/extrato_response.rb +886 -0
- data/lib/pier-sdk-ruby/models/pessoa_fisica_response.rb +661 -0
- data/lib/pier-sdk-ruby/models/saldo_limite_response.rb +986 -0
- data/lib/pier-sdk-ruby/version.rb +19 -0
- data/pier-sdk-ruby.gemspec +33 -0
- data/spec/api/cartao_api_spec.rb +110 -0
- data/spec/api/conta_api_spec.rb +107 -0
- data/spec/api/token_api_spec.rb +71 -0
- data/spec/models/auth_token_spec.rb +90 -0
- data/spec/models/body_access_token_spec.rb +70 -0
- data/spec/models/cancelar_cartao_response_spec.rb +80 -0
- data/spec/models/cartao_response_spec.rb +260 -0
- data/spec/models/consultar_cartao_response_spec.rb +70 -0
- data/spec/models/consultar_conta_cartao_response_spec.rb +150 -0
- data/spec/models/consultar_conta_response_spec.rb +80 -0
- data/spec/models/consultar_extrato_conta_response_spec.rb +200 -0
- data/spec/models/consultar_saldo_limites_response_spec.rb +200 -0
- data/spec/models/conta_cartao_response_spec.rb +180 -0
- data/spec/models/conta_response_spec.rb +380 -0
- data/spec/models/desbloquear_cartao_response_spec.rb +60 -0
- data/spec/models/extra_info_spec.rb +50 -0
- data/spec/models/extrato_response_spec.rb +320 -0
- data/spec/models/pessoa_fisica_response_spec.rb +230 -0
- data/spec/models/saldo_limite_response_spec.rb +360 -0
- metadata +310 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
# Pier::ConsultarCartaoResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**cartoes** | [**Array<CartaoResponse>**](CartaoResponse.md) | | [optional]
|
7
|
+
**codigo_retorno** | **Integer** | | [optional]
|
8
|
+
**descricao_retorno** | **String** | | [optional]
|
9
|
+
|
10
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# Pier::ConsultarContaCartaoResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**data_validade** | **String** | | [optional]
|
7
|
+
**descricao_estagio** | **String** | | [optional]
|
8
|
+
**descricao_status** | **String** | | [optional]
|
9
|
+
**estagio** | **Integer** | | [optional]
|
10
|
+
**flag_cancelamento** | **BOOLEAN** | | [optional]
|
11
|
+
**id_cartao** | **Integer** | | [optional]
|
12
|
+
**numero_cartao** | **String** | | [optional]
|
13
|
+
**portador** | **String** | | [optional]
|
14
|
+
**portador_id** | **Integer** | | [optional]
|
15
|
+
**status** | **Integer** | | [optional]
|
16
|
+
**status_data** | **DateTime** | | [optional]
|
17
|
+
|
18
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Pier::ConsultarContaResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**cod_retorno** | **Integer** | | [optional]
|
7
|
+
**codigo_retorno** | **Integer** | | [optional]
|
8
|
+
**contas** | [**Array<ContaCartaoResponse>**](ContaCartaoResponse.md) | | [optional]
|
9
|
+
**descricao_retorno** | **String** | | [optional]
|
10
|
+
|
11
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Pier::ConsultarExtratoContaResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**codigo_retorno** | **Integer** | | [optional]
|
7
|
+
**compras_nacionais** | **Float** | | [optional]
|
8
|
+
**cpf** | **String** | | [optional]
|
9
|
+
**creditos_nacionais** | **Float** | | [optional]
|
10
|
+
**data_vencimento** | **String** | | [optional]
|
11
|
+
**debitos_nacionais** | **Float** | | [optional]
|
12
|
+
**descricao_retorno** | **String** | | [optional]
|
13
|
+
**extrato** | [**Array<ExtratoResponse>**](ExtratoResponse.md) | | [optional]
|
14
|
+
**id_cartao** | **Integer** | | [optional]
|
15
|
+
**id_conta** | **Integer** | | [optional]
|
16
|
+
**multa** | **Float** | | [optional]
|
17
|
+
**pagamentos** | **Float** | | [optional]
|
18
|
+
**saldo_atual_final** | **Float** | | [optional]
|
19
|
+
**saldo_extrato_anterior** | **Float** | | [optional]
|
20
|
+
**tarifas_nacionais** | **Float** | | [optional]
|
21
|
+
**valor_minimo_extrato** | **Float** | | [optional]
|
22
|
+
|
23
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Pier::ConsultarSaldoLimitesResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**cod_retorno** | **Integer** | | [optional]
|
7
|
+
**codigo_retorno** | **Integer** | | [optional]
|
8
|
+
**descricao_retorno** | **String** | | [optional]
|
9
|
+
**disponib_compra_nac** | **Float** | | [optional]
|
10
|
+
**disponib_global_credito** | **Float** | | [optional]
|
11
|
+
**disponib_parcelado_nac** | **Float** | | [optional]
|
12
|
+
**disponib_parcelas_nac** | **Float** | | [optional]
|
13
|
+
**disponib_saque_nac_global** | **Float** | | [optional]
|
14
|
+
**limite_compra_nac** | **Float** | | [optional]
|
15
|
+
**limite_global_credito** | **Float** | | [optional]
|
16
|
+
**limite_parcelado_nac** | **Float** | | [optional]
|
17
|
+
**limite_parcelas_nac** | **Float** | | [optional]
|
18
|
+
**limite_saque_nac_global** | **Float** | | [optional]
|
19
|
+
**limite_saque_nac_periodo** | **Float** | | [optional]
|
20
|
+
**renda_comprovada** | **Float** | | [optional]
|
21
|
+
**solicitacao_pendente** | **BOOLEAN** | | [optional]
|
22
|
+
|
23
|
+
|
data/docs/ContaApi.md
ADDED
@@ -0,0 +1,238 @@
|
|
1
|
+
# Pier::ContaApi
|
2
|
+
|
3
|
+
All URIs are relative to *https://localhost/*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**buscar_conta_using_get**](ContaApi.md#buscar_conta_using_get) | **GET** /v1/contas/buscar | /contas/buscar
|
8
|
+
[**consultar_conta_using_get**](ContaApi.md#consultar_conta_using_get) | **GET** /v1/contas/{idConta} | /contas/{idConta}
|
9
|
+
[**consultar_extrato_faturas_using_get**](ContaApi.md#consultar_extrato_faturas_using_get) | **GET** /v1/contas/{idConta}/faturas | /contas/{idConta}/faturas
|
10
|
+
[**consultar_saldos_limites_using_get**](ContaApi.md#consultar_saldos_limites_using_get) | **GET** /v1/contas/{idConta}/limites | /contas/{idConta}/limites
|
11
|
+
|
12
|
+
|
13
|
+
# **buscar_conta_using_get**
|
14
|
+
> ConsultarContaResponse buscar_conta_using_get(opts)
|
15
|
+
|
16
|
+
/contas/buscar
|
17
|
+
|
18
|
+
Consulte contas filtrando pelos campos id do emissor, n\u00C3\u00BAmero do cart\u00C3\u00A3o, nome ou CPF/CNPJ
|
19
|
+
|
20
|
+
### Example
|
21
|
+
```ruby
|
22
|
+
# load the gem
|
23
|
+
require 'pier-sdk-ruby'
|
24
|
+
# setup authorization
|
25
|
+
Pier.configure do |config|
|
26
|
+
# Configure API key authorization: access_token
|
27
|
+
config.api_key['access_token'] = 'YOUR API KEY'
|
28
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'BEARER' (defaults to nil)
|
29
|
+
#config.api_key_prefix['access_token'] = 'BEARER'
|
30
|
+
end
|
31
|
+
|
32
|
+
api_instance = Pier::ContaApi.new
|
33
|
+
|
34
|
+
opts = {
|
35
|
+
nome: "nome_example", # String | Nome
|
36
|
+
cpf: "cpf_example", # String | CPF (opcional caso nao informe o n\u00C3\u00BAmero do cart\u00C3\u00A3o ou id da conta)
|
37
|
+
numero_cartao: "numero_cartao_example", # String | N\u00C3\u00BAmero do cart\u00C3\u00A3o (opcional caso n\u00C3\u00A3o informa o cpf ou id da conta)
|
38
|
+
id_conta: 789 # Integer | ID da Conta (opcional caso n\u00C3\u00A3o informe o n\u00C3\u00BAmero do cart\u00C3\u00A3o ou cpf)
|
39
|
+
}
|
40
|
+
|
41
|
+
begin
|
42
|
+
#/contas/buscar
|
43
|
+
result = api_instance.buscar_conta_using_get(opts)
|
44
|
+
p result
|
45
|
+
rescue Pier::ApiError => e
|
46
|
+
puts "Exception when calling ContaApi->buscar_conta_using_get: #{e}"
|
47
|
+
end
|
48
|
+
```
|
49
|
+
|
50
|
+
### Parameters
|
51
|
+
|
52
|
+
Name | Type | Description | Notes
|
53
|
+
------------- | ------------- | ------------- | -------------
|
54
|
+
**nome** | **String**| Nome | [optional]
|
55
|
+
**cpf** | **String**| CPF (opcional caso nao informe o n\u00C3\u00BAmero do cart\u00C3\u00A3o ou id da conta) | [optional]
|
56
|
+
**numero_cartao** | **String**| N\u00C3\u00BAmero do cart\u00C3\u00A3o (opcional caso n\u00C3\u00A3o informa o cpf ou id da conta) | [optional]
|
57
|
+
**id_conta** | **Integer**| ID da Conta (opcional caso n\u00C3\u00A3o informe o n\u00C3\u00BAmero do cart\u00C3\u00A3o ou cpf) | [optional]
|
58
|
+
|
59
|
+
### Return type
|
60
|
+
|
61
|
+
[**ConsultarContaResponse**](ConsultarContaResponse.md)
|
62
|
+
|
63
|
+
### Authorization
|
64
|
+
|
65
|
+
[access_token](../README.md#access_token)
|
66
|
+
|
67
|
+
### HTTP request headers
|
68
|
+
|
69
|
+
- **Content-Type**: application/json
|
70
|
+
- **Accept**: application/json
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
# **consultar_conta_using_get**
|
75
|
+
> ContaResponse consultar_conta_using_get(id_conta)
|
76
|
+
|
77
|
+
/contas/{idConta}
|
78
|
+
|
79
|
+
Consulte informa\u00C3\u00A7\u00C3\u00B5es de uma determinada conta
|
80
|
+
|
81
|
+
### Example
|
82
|
+
```ruby
|
83
|
+
# load the gem
|
84
|
+
require 'pier-sdk-ruby'
|
85
|
+
# setup authorization
|
86
|
+
Pier.configure do |config|
|
87
|
+
# Configure API key authorization: access_token
|
88
|
+
config.api_key['access_token'] = 'YOUR API KEY'
|
89
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'BEARER' (defaults to nil)
|
90
|
+
#config.api_key_prefix['access_token'] = 'BEARER'
|
91
|
+
end
|
92
|
+
|
93
|
+
api_instance = Pier::ContaApi.new
|
94
|
+
|
95
|
+
id_conta = 56 # Integer | ID da Conta
|
96
|
+
|
97
|
+
|
98
|
+
begin
|
99
|
+
#/contas/{idConta}
|
100
|
+
result = api_instance.consultar_conta_using_get(id_conta)
|
101
|
+
p result
|
102
|
+
rescue Pier::ApiError => e
|
103
|
+
puts "Exception when calling ContaApi->consultar_conta_using_get: #{e}"
|
104
|
+
end
|
105
|
+
```
|
106
|
+
|
107
|
+
### Parameters
|
108
|
+
|
109
|
+
Name | Type | Description | Notes
|
110
|
+
------------- | ------------- | ------------- | -------------
|
111
|
+
**id_conta** | **Integer**| ID da Conta |
|
112
|
+
|
113
|
+
### Return type
|
114
|
+
|
115
|
+
[**ContaResponse**](ContaResponse.md)
|
116
|
+
|
117
|
+
### Authorization
|
118
|
+
|
119
|
+
[access_token](../README.md#access_token)
|
120
|
+
|
121
|
+
### HTTP request headers
|
122
|
+
|
123
|
+
- **Content-Type**: application/json
|
124
|
+
- **Accept**: application/json
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
# **consultar_extrato_faturas_using_get**
|
129
|
+
> ConsultarExtratoContaResponse consultar_extrato_faturas_using_get(id_conta, data_vencimento)
|
130
|
+
|
131
|
+
/contas/{idConta}/faturas
|
132
|
+
|
133
|
+
Consulte os extratos/faturas de uma determinada conta
|
134
|
+
|
135
|
+
### Example
|
136
|
+
```ruby
|
137
|
+
# load the gem
|
138
|
+
require 'pier-sdk-ruby'
|
139
|
+
# setup authorization
|
140
|
+
Pier.configure do |config|
|
141
|
+
# Configure API key authorization: access_token
|
142
|
+
config.api_key['access_token'] = 'YOUR API KEY'
|
143
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'BEARER' (defaults to nil)
|
144
|
+
#config.api_key_prefix['access_token'] = 'BEARER'
|
145
|
+
end
|
146
|
+
|
147
|
+
api_instance = Pier::ContaApi.new
|
148
|
+
|
149
|
+
id_conta = 56 # Integer | ID da Conta
|
150
|
+
|
151
|
+
data_vencimento = "data_vencimento_example" # String | Data limite para o vencimento das transa\u00C3\u00A7\u00C3\u00B5es
|
152
|
+
|
153
|
+
|
154
|
+
begin
|
155
|
+
#/contas/{idConta}/faturas
|
156
|
+
result = api_instance.consultar_extrato_faturas_using_get(id_conta, data_vencimento)
|
157
|
+
p result
|
158
|
+
rescue Pier::ApiError => e
|
159
|
+
puts "Exception when calling ContaApi->consultar_extrato_faturas_using_get: #{e}"
|
160
|
+
end
|
161
|
+
```
|
162
|
+
|
163
|
+
### Parameters
|
164
|
+
|
165
|
+
Name | Type | Description | Notes
|
166
|
+
------------- | ------------- | ------------- | -------------
|
167
|
+
**id_conta** | **Integer**| ID da Conta |
|
168
|
+
**data_vencimento** | **String**| Data limite para o vencimento das transa\u00C3\u00A7\u00C3\u00B5es |
|
169
|
+
|
170
|
+
### Return type
|
171
|
+
|
172
|
+
[**ConsultarExtratoContaResponse**](ConsultarExtratoContaResponse.md)
|
173
|
+
|
174
|
+
### Authorization
|
175
|
+
|
176
|
+
[access_token](../README.md#access_token)
|
177
|
+
|
178
|
+
### HTTP request headers
|
179
|
+
|
180
|
+
- **Content-Type**: application/json
|
181
|
+
- **Accept**: application/json
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
# **consultar_saldos_limites_using_get**
|
186
|
+
> ConsultarSaldoLimitesResponse consultar_saldos_limites_using_get(id_conta)
|
187
|
+
|
188
|
+
/contas/{idConta}/limites
|
189
|
+
|
190
|
+
Consulte os limites de uma determinada conta
|
191
|
+
|
192
|
+
### Example
|
193
|
+
```ruby
|
194
|
+
# load the gem
|
195
|
+
require 'pier-sdk-ruby'
|
196
|
+
# setup authorization
|
197
|
+
Pier.configure do |config|
|
198
|
+
# Configure API key authorization: access_token
|
199
|
+
config.api_key['access_token'] = 'YOUR API KEY'
|
200
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'BEARER' (defaults to nil)
|
201
|
+
#config.api_key_prefix['access_token'] = 'BEARER'
|
202
|
+
end
|
203
|
+
|
204
|
+
api_instance = Pier::ContaApi.new
|
205
|
+
|
206
|
+
id_conta = 56 # Integer | ID da Conta
|
207
|
+
|
208
|
+
|
209
|
+
begin
|
210
|
+
#/contas/{idConta}/limites
|
211
|
+
result = api_instance.consultar_saldos_limites_using_get(id_conta)
|
212
|
+
p result
|
213
|
+
rescue Pier::ApiError => e
|
214
|
+
puts "Exception when calling ContaApi->consultar_saldos_limites_using_get: #{e}"
|
215
|
+
end
|
216
|
+
```
|
217
|
+
|
218
|
+
### Parameters
|
219
|
+
|
220
|
+
Name | Type | Description | Notes
|
221
|
+
------------- | ------------- | ------------- | -------------
|
222
|
+
**id_conta** | **Integer**| ID da Conta |
|
223
|
+
|
224
|
+
### Return type
|
225
|
+
|
226
|
+
[**ConsultarSaldoLimitesResponse**](ConsultarSaldoLimitesResponse.md)
|
227
|
+
|
228
|
+
### Authorization
|
229
|
+
|
230
|
+
[access_token](../README.md#access_token)
|
231
|
+
|
232
|
+
### HTTP request headers
|
233
|
+
|
234
|
+
- **Content-Type**: application/json
|
235
|
+
- **Accept**: application/json
|
236
|
+
|
237
|
+
|
238
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Pier::ContaCartaoResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**cnpj_loja** | **String** | | [optional]
|
7
|
+
**cpf** | **String** | | [optional]
|
8
|
+
**data_cadastro_conta** | **String** | | [optional]
|
9
|
+
**data_emissao_identidade** | **String** | | [optional]
|
10
|
+
**data_nascimento** | **String** | | [optional]
|
11
|
+
**ddd_celular** | **String** | | [optional]
|
12
|
+
**id_conta** | **Integer** | | [optional]
|
13
|
+
**nome** | **String** | | [optional]
|
14
|
+
**numero_celular** | **String** | | [optional]
|
15
|
+
**numero_identidade** | **String** | | [optional]
|
16
|
+
**orgao_identidade** | **String** | | [optional]
|
17
|
+
**possui_compra_aprovada** | **String** | | [optional]
|
18
|
+
**status_conta** | **Integer** | | [optional]
|
19
|
+
**uf_identidade** | **String** | | [optional]
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# Pier::ContaResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**bin** | **Integer** | | [optional]
|
7
|
+
**cartao** | [**ConsultarContaCartaoResponse**](ConsultarContaCartaoResponse.md) | | [optional]
|
8
|
+
**data_cadastramento** | **String** | | [optional]
|
9
|
+
**data_ultimo_pagamento** | **String** | | [optional]
|
10
|
+
**data_venc_cobranca** | **String** | | [optional]
|
11
|
+
**dddcelular_sms** | **String** | | [optional]
|
12
|
+
**descricao_status** | **String** | | [optional]
|
13
|
+
**dias_em_atraso** | **Integer** | | [optional]
|
14
|
+
**emissor** | **String** | | [optional]
|
15
|
+
**flag_cancelamento** | **BOOLEAN** | | [optional]
|
16
|
+
**forma_envio_fatura** | **String** | | [optional]
|
17
|
+
**id_bandeira** | **Integer** | | [optional]
|
18
|
+
**id_conta** | **Integer** | | [optional]
|
19
|
+
**id_emissor** | **Integer** | | [optional]
|
20
|
+
**id_endereco** | **Integer** | | [optional]
|
21
|
+
**id_fantasia_basica** | **Integer** | | [optional]
|
22
|
+
**id_origem_comercial** | **Integer** | | [optional]
|
23
|
+
**id_produto** | **Integer** | | [optional]
|
24
|
+
**id_proposta** | **Integer** | | [optional]
|
25
|
+
**melhor_dia** | **Integer** | | [optional]
|
26
|
+
**nome_credor** | **String** | | [optional]
|
27
|
+
**nome_produto** | **String** | | [optional]
|
28
|
+
**num_celular_sms** | **String** | | [optional]
|
29
|
+
**pagamentos** | **Float** | | [optional]
|
30
|
+
**permite_refinanciamento** | **BOOLEAN** | | [optional]
|
31
|
+
**pessoa_fisica** | [**PessoaFisicaResponse**](PessoaFisicaResponse.md) | | [optional]
|
32
|
+
**quantidade_pagamentos** | **Integer** | | [optional]
|
33
|
+
**saldo_limite** | [**SaldoLimiteResponse**](SaldoLimiteResponse.md) | | [optional]
|
34
|
+
**status** | **Integer** | | [optional]
|
35
|
+
**status_data** | **DateTime** | | [optional]
|
36
|
+
**taxa_refinanciamento** | **String** | | [optional]
|
37
|
+
**vcto** | **String** | | [optional]
|
38
|
+
**vencimento1** | **Integer** | | [optional]
|
39
|
+
**vinculo_origem_usuario** | **BOOLEAN** | | [optional]
|
40
|
+
|
41
|
+
|
data/docs/ExtraInfo.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# Pier::ExtratoResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**cartao** | **String** | | [optional]
|
7
|
+
**chip** | **String** | | [optional]
|
8
|
+
**cidade_uf_pais** | **String** | | [optional]
|
9
|
+
**codigo_autorizacao** | **String** | | [optional]
|
10
|
+
**codigo_moeda** | **String** | | [optional]
|
11
|
+
**codigo_moeda_destino** | **String** | | [optional]
|
12
|
+
**cotacao_dolar** | **Float** | | [optional]
|
13
|
+
**credito** | **Float** | | [optional]
|
14
|
+
**data_compra** | **String** | | [optional]
|
15
|
+
**data_cotacao_dolar** | **DateTime** | | [optional]
|
16
|
+
**data_entrada_compra** | **String** | | [optional]
|
17
|
+
**data_transacao_utc** | **String** | | [optional]
|
18
|
+
**debito** | **Float** | | [optional]
|
19
|
+
**descricao_modo_entrada** | **String** | | [optional]
|
20
|
+
**descricao_transacao** | **String** | | [optional]
|
21
|
+
**encargos_financeiros** | **Float** | | [optional]
|
22
|
+
**historico** | **String** | | [optional]
|
23
|
+
**id_evento_externo** | **Integer** | | [optional]
|
24
|
+
**id_tipo_transacao** | **Integer** | | [optional]
|
25
|
+
**id_transacao** | **Integer** | | [optional]
|
26
|
+
**mcc** | **Integer** | | [optional]
|
27
|
+
**nome_estab_visa** | **String** | | [optional]
|
28
|
+
**nome_plastico** | **String** | | [optional]
|
29
|
+
**numero_estabelecimento** | **Integer** | | [optional]
|
30
|
+
**origem** | **String** | | [optional]
|
31
|
+
**taxa_embarque** | **Float** | | [optional]
|
32
|
+
**tipo_evento** | **String** | | [optional]
|
33
|
+
**valor_dolar** | **Float** | | [optional]
|
34
|
+
|
35
|
+
|