Class: OFX::CreditCardAccount

Inherits:
Object
  • Object
show all
Defined in:
lib/ofx/credit_card_statement_message_set.rb,
lib/ofx/1.0.2/credit_card_statement_message_set.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#account_identifierObject

Returns the value of attribute account_identifier.



40
41
42
# File 'lib/ofx/credit_card_statement_message_set.rb', line 40

def 
  @account_identifier
end

#account_keyObject

Returns the value of attribute account_key.



41
42
43
# File 'lib/ofx/credit_card_statement_message_set.rb', line 41

def 
  @account_key
end

Class Method Details

.from_ofx_102_hash(account_hash) ⇒ Object



73
74
75
76
77
78
79
80
# File 'lib/ofx/1.0.2/credit_card_statement_message_set.rb', line 73

def self.from_ofx_102_hash()
     = OFX::BankingAccount.new
    
    . = ['ACCTID']
    . = ['ACCTKEY']
    
    
end

Instance Method Details

#to_ofx_102_request_bodyObject



64
65
66
67
68
69
70
71
# File 'lib/ofx/1.0.2/credit_card_statement_message_set.rb', line 64

def to_ofx_102_request_body
    "        <CCACCTFROM>\n" +
    "          <ACCTID>#{}\n" +
    
    ( ? "          <ACCTKEY>#{}\n" : "") +
    
    "        </CCACCTFROM>\n"
end