class PagSeguro::Shipping

Attributes

address[RW]

Get the sender address.

cost[RW]

Set the credit card holder bithdate.

type_id[RW]

Set the shipping type

Public Class Methods

new(type_id = nil, cost = nil) click to toggle source
# File lib/pagseguro/shipping.rb, line 22
def initialize(type_id = nil, cost = nil)
  @type_id = type_id
  @cost = cost
end