class Chilexpress::Receiver

Attributes

delivery_date[R]
delivery_time[R]
name[R]
rut[R]

Public Class Methods

new(attributes) click to toggle source
# File lib/chilexpress/receiver.rb, line 5
def initialize(attributes)
  @rut = attributes[:rut]
  @name = attributes[:name]
  @delivery_date = attributes[:delivery_date]
  @delivery_time = attributes[:delivery_time]
end