enotas_nfe 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3395907d9bf82148475d4085eb3c708e64826ee5
4
- data.tar.gz: 357f3594696cbbb7db4ca4a09b0ca4975ea5af91
3
+ metadata.gz: 877b0d2850e91e2592880683dee0c74eac56ba1b
4
+ data.tar.gz: 9fab137a5e71e49333b2af2cab4bee42f9fd9c8e
5
5
  SHA512:
6
- metadata.gz: aa3ce8550b2f47f0f329336874c70b5267dc1385ee4820dc4e025c32c13e2b3680d9f75117f45d034d7ea8825883eded9006bfad959d9475fb12975cf47113d5
7
- data.tar.gz: 04066fbc4ee59973ac080080d9511885f49b641abc47fa0564c0a67348e282b487ad6965de8cad06fb5d60b2d6b567634436735e5109d5d50a6d46f09c1835a9
6
+ metadata.gz: b67caf99bf4127ff3ce9ef22ac2c72ae3c6e6988efd978d7e12d46a9c24f6ee5824dc1a0315ad7f7181187ea20cba4dc910d4841cf588d1838de53c5ba078a12
7
+ data.tar.gz: 648d1ec8c410f0b5644c80961aca8a78bb97a7e8e031419afcf8afe3af5e8b758a26976b3a40250638a8641cbd988569333e236264ccd46b601c482a52a5d154
@@ -0,0 +1,15 @@
1
+ module EnotasNfe
2
+ module Model
3
+ class CredenciadoraCartao
4
+
5
+ include Virtus.model
6
+
7
+ attribute :tipoIntegracaoPagamento, String #"IntegradoAoSistemaDeGestao" ou "NaoIntegradoAoSistemaDeGestao"
8
+ #Os atributos abaixo são opcionais caso o atributo "tipoIntegracaoPagamento" seja "NaoIntegradoAoSistemaDeGestao"
9
+ attribute :cnpjCredenciadoraCartao, String
10
+ attribute :bandeira, String
11
+ attribute :autorizacao, String
12
+
13
+ end
14
+ end
15
+ end
@@ -13,7 +13,7 @@ module EnotasNfe
13
13
 
14
14
  attribute :id #Em casos de atualização o identificador único da empresa deve ser informado, atributo "id".
15
15
  attribute :empresaId, String
16
- attribute :logotipo, String
16
+ attribute :logotipo, Faraday::UploadIO
17
17
  attribute :cnpj, String
18
18
  attribute :inscricaoMunicipal, String
19
19
  attribute :razaoSocial, String
@@ -6,6 +6,7 @@ module EnotasNfe
6
6
 
7
7
  attribute :tipo, String
8
8
  attribute :valor, Float
9
+ attribute :credenciadoraCartao, CredenciadoraCartao
9
10
 
10
11
  end
11
12
  end
@@ -1,3 +1,3 @@
1
1
  module EnotasNfe
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enotas_nfe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Fernando Pimenta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-11 00:00:00.000000000 Z
11
+ date: 2017-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -136,6 +136,7 @@ files:
136
136
  - lib/enotas_nfe/model/cofins.rb
137
137
  - lib/enotas_nfe/model/configuracoes_nfse_homologacao.rb
138
138
  - lib/enotas_nfe/model/configuracoes_nfse_producao.rb
139
+ - lib/enotas_nfe/model/credenciadora_cartao.rb
139
140
  - lib/enotas_nfe/model/csc.rb
140
141
  - lib/enotas_nfe/model/emissao_nfe_consumidor.rb
141
142
  - lib/enotas_nfe/model/empresa.rb