class Etsy::BillPayment

BillPayment

Represents a user's Billing Payment.

Public Class Methods

find_all_by_user_id(user_id, options = {}) click to toggle source
# File lib/etsy/bill_payment.rb, line 18
def self.find_all_by_user_id(user_id, options = {})
  get_all("/users/#{user_id}/payments", options)
end

Public Instance Methods

created_at() click to toggle source

Time that this listing was created

# File lib/etsy/bill_payment.rb, line 24
def created_at
  Time.at(created)
end