module EzpayInvoice::Api::Properties::General

Public Class Methods

included(base) click to toggle source
# File lib/ezpay-invoice/api/properties/general.rb, line 5
def self.included(base)
  base.class_eval do
    property :RespondType, from: :respond_type, default: 'JSON'
    property :TimeStamp, from: :timestamp, default: Time.now.to_i
  end
end