Class: StarkBank::TaxPayment

Inherits:
Utils::Resource show all
Defined in:
lib/tax_payment/tax_payment.rb,
lib/tax_payment/log.rb

Overview

# TaxPayment object

When you initialize a TaxPayment, the entity will not be automatically created in the Stark Bank API. The ‘create’ function sends the objects to the Stark Bank API and returns the list of created objects.

## Parameters (conditionally required):

  • line [string, default nil]: Number sequence that describes the payment. Either ‘line’ or ‘bar_code’ parameters are required. If both are sent, they must match. ex: ‘85800000003 0 28960328203 1 56072020190 5 22109674804 0’

  • bar_code [string, default nil]: Bar code number that describes the payment. Either ‘line’ or ‘barCode’ parameters are required. If both are sent, they must match. ex: ‘83660000001084301380074119002551100010601813’

## Parameters (required):

  • description [string]: Text to be displayed in your statement (min. 10 characters). ex: ‘payment ABC’

## Parameters (optional):

  • scheduled [Date, DateTime, Time or string, default today]: payment scheduled date. ex: Date.new(2020, 3, 10)

  • tags [list of strings, default nil]: list of strings for tagging

## Attributes (return-only):

  • id [string, default nil]: unique id returned when payment is created. ex: ‘5656565656565656’

  • type [string, default nil]: tax type. ex: ‘das’

  • status [string, default nil]: current payment status. ex: ‘success’ or ‘failed’

  • amount [int, default nil]: amount automatically calculated from line or bar_code. ex: 23456 (= R$ 234.56)

  • fee [integer, default nil]: fee charged when tax payment is created. ex: 200 (= R$ 2.00)

  • created [DateTime, default nil]: creation datetime for the Invoice. ex: DateTime.new(2020, 3, 10, 10, 30, 0, 0)

  • updated [DateTime, default nil]: latest update datetime for the Invoice. ex: DateTime.new(2020, 3, 10, 10, 30, 0, 0)

Defined Under Namespace

Classes: Log

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Utils::SubResource

#inspect, #to_s

Constructor Details

#initialize(id: nil, line: nil, bar_code: nil, description:, tags: nil, scheduled: nil, status: nil, amount: nil, fee: nil, type: nil, updated: nil, created: nil) ⇒ TaxPayment

Returns a new instance of TaxPayment.



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/tax_payment/tax_payment.rb', line 35

def initialize(
  id: nil, line: nil, bar_code: nil, description:, tags: nil, scheduled: nil, 
  status: nil, amount: nil, fee: nil, type: nil, updated: nil, created: nil
)
  super(id)
  @line = line
  @bar_code = bar_code
  @description = description
  @tags = tags
  @scheduled = StarkBank::Utils::Checks.check_date(scheduled)
  @status = status
  @amount = amount
  @fee = fee
  @type = type
  @updated = StarkBank::Utils::Checks.check_datetime(updated)
  @created = StarkBank::Utils::Checks.check_datetime(created)
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def amount
  @amount
end

#bar_codeObject (readonly)

Returns the value of attribute bar_code.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def bar_code
  @bar_code
end

#createdObject (readonly)

Returns the value of attribute created.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def created
  @created
end

#descriptionObject (readonly)

Returns the value of attribute description.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def description
  @description
end

#feeObject (readonly)

Returns the value of attribute fee.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def fee
  @fee
end

#idObject (readonly)

Returns the value of attribute id.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def id
  @id
end

#lineObject (readonly)

Returns the value of attribute line.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def line
  @line
end

#scheduledObject (readonly)

Returns the value of attribute scheduled.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def scheduled
  @scheduled
end

#statusObject (readonly)

Returns the value of attribute status.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def status
  @status
end

#tagsObject (readonly)

Returns the value of attribute tags.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def tags
  @tags
end

#typeObject (readonly)

Returns the value of attribute type.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def type
  @type
end

#updatedObject (readonly)

Returns the value of attribute updated.



34
35
36
# File 'lib/tax_payment/tax_payment.rb', line 34

def updated
  @updated
end

Class Method Details

.create(payments, user: nil) ⇒ Object

# Create TaxPayments

Send a list of TaxPayment objects for creation in the Stark Bank API

## Parameters (required):

  • payments [list of TaxPayment objects]: list of TaxPayment objects to be created in the API

## Parameters (optional):

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • list of TaxPayment objects with updated attributes



65
66
67
# File 'lib/tax_payment/tax_payment.rb', line 65

def self.create(payments, user: nil)
  StarkBank::Utils::Rest.post(entities: payments, user: user, **resource)
end

.delete(id, user: nil) ⇒ Object

# Delete a TaxPayment entity

Delete a TaxPayment entity previously created in the Stark Bank API

## Parameters (required):

  • id [string]: UtilityPayment unique id. ex:‘5656565656565656’

## Parameters (optional):

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • deleted TaxPayment object



177
178
179
# File 'lib/tax_payment/tax_payment.rb', line 177

def self.delete(id, user: nil)
  StarkBank::Utils::Rest.delete_id(id: id, user: user, **resource)
end

.get(id, user: nil) ⇒ Object

# Retrieve a specific TaxPayment

Receive a single TaxPayment object previously created by the Stark Bank API by passing its id

## Parameters (required):

  • id [string]: object unique id. ex: ‘5656565656565656’

## Parameters (optional):

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • TaxPayment object with updated attributes



81
82
83
# File 'lib/tax_payment/tax_payment.rb', line 81

def self.get(id, user: nil)
  StarkBank::Utils::Rest.get_id(id: id, user: user, **resource)
end

.page(cursor: nil, limit: nil, after: nil, before: nil, status: nil, tags: nil, ids: nil, user: nil) ⇒ Object

# Retrieve paged Tax Payments

Receive a list of up to 100 Tax Payment objects previously created in the Stark Bank API and the cursor to the next page. Use this function instead of query if you want to manually page your requests.

## Parameters (optional):

  • cursor [string, default nil]: cursor returned on the previous page function call

  • limit [integer, default nil]: maximum number of objects to be retrieved. Unlimited if nil. ex: 35

  • after [Date , DateTime, Time or string, default nil]: date filter for objects created only after specified date. ex: Date.new(2020, 3, 10)

  • before [Date, DateTime, Time or string, default nil]: date filter for objects created only before specified date. ex: Date.new(2020, 3, 10)

  • tags [list of strings, default nil]: tags to filter retrieved objects. ex: [‘tony’, ‘stark’]

  • ids [list of strings, default nil]: list of ids to filter retrieved objects. ex: [‘5656565656565656’, ‘4545454545454545’]

  • status [string, default nil]: filter for status of retrieved objects. ex: ‘paid’ or ‘registered’

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • list of Tax Payment objects with updated attributes and cursor to retrieve the next page of Tax Payment objects



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/tax_payment/tax_payment.rb', line 149

def self.page(cursor: nil, limit: nil, after: nil, before: nil, status: nil, tags: nil, ids: nil, user: nil)
  after = StarkBank::Utils::Checks.check_date(after)
  before = StarkBank::Utils::Checks.check_date(before)
  return StarkBank::Utils::Rest.get_page(
    cursor: cursor,
    limit: limit,
    after: after,
    before: before,
    tags: tags,
    ids: ids,
    status: status,
    user: user,
    **resource
  )
end

.pdf(id, user: nil) ⇒ Object

# Retrieve a specific TaxPayment pdf file

Receive a single TaxPayment pdf file generated in the Stark Bank API by passing its id. Only valid for tax payments with ‘success’ status.

## Parameters (required):

  • id [string]: object unique id. ex: ‘5656565656565656’

## Parameters (optional):

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • TaxPayment pdf file



98
99
100
# File 'lib/tax_payment/tax_payment.rb', line 98

def self.pdf(id, user: nil)
  StarkBank::Utils::Rest.get_content(id: id, user: user, sub_resource_name: 'pdf', **resource)
end

.query(limit: nil, after: nil, before: nil, status: nil, tags: nil, ids: nil, user: nil) ⇒ Object

# Retrieve TaxPayments

Receive a generator of TaxPayment objects previously created in the Stark Bank API

## Parameters (optional):

  • limit [integer, default nil]: maximum number of objects to be retrieved. Unlimited if nil. ex: 35

  • after [Date , DateTime, Time or string, default nil]: date filter for objects created only after specified date. ex: Date.new(2020, 3, 10)

  • before [Date, DateTime, Time or string, default nil]: date filter for objects created only before specified date. ex: Date.new(2020, 3, 10)

  • tags [list of strings, default nil]: tags to filter retrieved objects. ex: [‘tony’, ‘stark’]

  • ids [list of strings, default nil]: list of ids to filter retrieved objects. ex: [‘5656565656565656’, ‘4545454545454545’]

  • status [string, default nil]: filter for status of retrieved objects. ex: ‘paid’ or ‘registered’

  • user [Organization/Project object, default nil]: Organization or Project object. Not necessary if StarkBank.user was set before function call

## Return:

  • generator of TaxPayment objects with updated attributes



117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/tax_payment/tax_payment.rb', line 117

def self.query(limit: nil, after: nil, before: nil, status: nil, tags: nil, ids: nil, user: nil)
  after = StarkBank::Utils::Checks.check_date(after)
  before = StarkBank::Utils::Checks.check_date(before)
  StarkBank::Utils::Rest.get_stream(
    limit: limit,
    after: after,
    before: before,
    tags: tags,
    ids: ids,
    status: status,
    user: user,
    **resource
  )
end

.resourceObject



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/tax_payment/tax_payment.rb', line 181

def self.resource
  {
    resource_name: 'TaxPayment',
    resource_maker: proc { |json|
      TaxPayment.new(
        id: json['id'],
        line: json['line'],
        bar_code: json['bar_code'],
        description: json['description'],
        tags: json['tags'],
        scheduled: json['scheduled'],
        status: json['status'],
        amount: json['amount'],
        fee: json['fee'],
        type: json['type'],
        updated: json['updated'],
        created: json['created']
      )
    }
  }
end