Class: StarkBank::CorporatePurchase::Log

Inherits:
StarkCore::Utils::Resource
  • Object
show all
Defined in:
lib/corporate_purchase/log.rb

Overview

# CorporatePurchase::Log object

Every time a CorporatePurchase entity is updated, a corresponding CorporatePurchase::Log is generated for the entity. This Log is never generated by the user, but it can be retrieved to check additional information on the CorporatePurchase.

## Attributes (return-only):

  • id [string]: unique id returned when the log is created. ex: ‘5656565656565656’

  • purchase [CorporatePurchase]: CorporatePurchase entity to which the log refers to.

  • description [string]: purchase descriptions. ex: ‘my_description’

  • corporate_transaction_id [string]: transaction ID related to the CorporateCard.

  • errors [list of strings]: list of errors linked to this CorporatePurchase event

  • type [string]: type of the CorporatePurchase event which triggered the log creation. ex: ‘approved’, ‘canceled’, ‘confirmed’, ‘denied’, ‘reversed’, ‘voided’.

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, purchase: nil, description: nil, corporate_transaction_id: nil, errors: nil, type: nil, created: nil) ⇒ Log

Returns a new instance of Log.



24
25
26
27
28
29
30
31
32
# File 'lib/corporate_purchase/log.rb', line 24

def initialize(id: nil, purchase: nil, description: nil, corporate_transaction_id: nil, errors: nil, type: nil, created: nil)
  super(id)
  @purchase = purchase
  @description = description
  @corporate_transaction_id = corporate_transaction_id
  @errors = errors
  @type = type
  @created = StarkCore::Utils::Checks.check_datetime(created)
end

Instance Attribute Details

#corporate_transaction_idObject (readonly)

Returns the value of attribute corporate_transaction_id.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def corporate_transaction_id
  @corporate_transaction_id
end

#createdObject (readonly)

Returns the value of attribute created.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def created
  @created
end

#descriptionObject (readonly)

Returns the value of attribute description.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def description
  @description
end

#errorsObject (readonly)

Returns the value of attribute errors.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def errors
  @errors
end

#idObject (readonly)

Returns the value of attribute id.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def id
  @id
end

#purchaseObject (readonly)

Returns the value of attribute purchase.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def purchase
  @purchase
end

#typeObject (readonly)

Returns the value of attribute type.



23
24
25
# File 'lib/corporate_purchase/log.rb', line 23

def type
  @type
end

Class Method Details

.get(id, user: nil) ⇒ Object

# Retrieve a specific CorporatePurchase::Log

Receive a single CorporatePurchase::Log 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:

  • CorporatePurchase::Log object with updated attributes



46
47
48
# File 'lib/corporate_purchase/log.rb', line 46

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

.page(cursor: nil, ids: nil, limit: nil, after: nil, before: nil, types: nil, purchase_ids: nil, user: nil) ⇒ Object

# Retrieve paged CorporatePurchase::Logs

Receive a list of up to 100 Log 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 purchases.

## Parameters (optional):

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

  • limit [integer, default 100]: maximum number of objects to be retrieved. Max = 100. ex: 35

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

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

  • types [list of strings, default nil]: filter for log event types. ex: [‘approved’, ‘canceled’, ‘confirmed’, ‘denied’, ‘reversed’, ‘voided’]

  • purchase_ids [list of strings, default nil]: list of Purchase ids to filter logs. ex: [‘5656565656565656’, ‘4545454545454545’]

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

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

## Return:

  • list of CorporatePurchase::Log objects with updated attributes

  • cursor to retrieve the next page of Log objects



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/corporate_purchase/log.rb', line 98

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

.query(ids: nil, limit: nil, after: nil, before: nil, types: nil, purchase_ids: nil, user: nil) ⇒ Object

# Retrieve CorporatePurchase::Logs

Receive a generator of CorporatePurchase::Log 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 or string, default nil]: date filter for objects created only after specified date. ex: Date.new(2020, 3, 10)

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

  • types [list of strings, default nil]: filter for log event types. ex: [‘approved’, ‘canceled’, ‘confirmed’, ‘denied’, ‘reversed’, ‘voided’]

  • purchase_ids [list of strings, default nil]: list of Purchase ids to filter logs. ex: [‘5656565656565656’, ‘4545454545454545’]

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

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

## Return:

  • generator of CorporatePurchase::Log objects with updated attributes



65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/corporate_purchase/log.rb', line 65

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

.resourceObject



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/corporate_purchase/log.rb', line 114

def self.resource
  request_maker = StarkBank::CorporatePurchase.resource[:resource_maker]
  {
    resource_name: 'CorporatePurchaseLog',
    resource_maker: proc { |json|
      Log.new(
        id: json['id'],
        purchase: StarkCore::Utils::API.from_api_json(request_maker, json['purchase']),
        description: json['description'],
        corporate_transaction_id: json['corporate_transaction_id'],
        errors: json['errors'],
        type: json['type'],
        created: json['created']
      )
    }
  }
end