Class: ChargeBee::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/chargebee/result.rb

Direct Known Subclasses

Event::Content, HostedPage::Content

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Result

Returns a new instance of Result.



4
5
6
# File 'lib/chargebee/result.rb', line 4

def initialize(response)
  @response = response
end

Instance Method Details

#addon ⇒ Object



77
78
79
80
# File 'lib/chargebee/result.rb', line 77

def addon() 
    addon = get(:addon, Addon);
    return addon;
end

#address ⇒ Object



92
93
94
95
# File 'lib/chargebee/result.rb', line 92

def address() 
    address = get(:address, Address);
    return address;
end

#card ⇒ Object



20
21
22
23
# File 'lib/chargebee/result.rb', line 20

def card() 
    card = get(:card, Card);
    return card;
end

#comment ⇒ Object



103
104
105
106
# File 'lib/chargebee/result.rb', line 103

def comment() 
    comment = get(:comment, Comment);
    return comment;
end

#coupon ⇒ Object



82
83
84
85
# File 'lib/chargebee/result.rb', line 82

def coupon() 
    coupon = get(:coupon, Coupon);
    return coupon;
end

#coupon_code ⇒ Object



87
88
89
90
# File 'lib/chargebee/result.rb', line 87

def coupon_code() 
    coupon_code = get(:coupon_code, CouponCode);
    return coupon_code;
end

#credit_note ⇒ Object



36
37
38
39
40
# File 'lib/chargebee/result.rb', line 36

def credit_note() 
    credit_note = get(:credit_note, CreditNote,
    {:line_items => CreditNote::LineItem, :discounts => CreditNote::Discount, :taxes => CreditNote::Tax, :line_item_taxes => CreditNote::LineItemTax, :linked_refunds => CreditNote::LinkedRefund, :allocations => CreditNote::Allocation});
    return credit_note;
end

#credit_notes ⇒ Object



120
121
122
123
124
# File 'lib/chargebee/result.rb', line 120

def credit_notes()
    credit_notes = get_list(:credit_notes, CreditNote,
    {:line_items => CreditNote::LineItem, :discounts => CreditNote::Discount, :taxes => CreditNote::Tax, :line_item_taxes => CreditNote::LineItemTax, :linked_refunds => CreditNote::LinkedRefund, :allocations => CreditNote::Allocation});
    return credit_notes;
end

#customer ⇒ Object



14
15
16
17
18
# File 'lib/chargebee/result.rb', line 14

def customer() 
    customer = get(:customer, Customer,
    {:billing_address => Customer::BillingAddress, :contacts => Customer::Contact, :payment_method => Customer::PaymentMethod});
    return customer;
end

#download ⇒ Object



108
109
110
111
# File 'lib/chargebee/result.rb', line 108

def download() 
    download = get(:download, Download);
    return download;
end

#estimate ⇒ Object



58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/chargebee/result.rb', line 58

def estimate() 
    estimate = get(:estimate, Estimate, {},
    {:subscription_estimate => SubscriptionEstimate, :invoice_estimate => InvoiceEstimate, :next_invoice_estimate => InvoiceEstimate, :credit_note_estimates => CreditNoteEstimate});
    estimate.init_dependant(@response[:estimate], :subscription_estimate,
    {:shipping_address => SubscriptionEstimate::ShippingAddress});
    estimate.init_dependant(@response[:estimate], :invoice_estimate,
    {:line_items => InvoiceEstimate::LineItem, :discounts => InvoiceEstimate::Discount, :taxes => InvoiceEstimate::Tax, :line_item_taxes => InvoiceEstimate::LineItemTax});
    estimate.init_dependant(@response[:estimate], :next_invoice_estimate,
    {:line_items => InvoiceEstimate::LineItem, :discounts => InvoiceEstimate::Discount, :taxes => InvoiceEstimate::Tax, :line_item_taxes => InvoiceEstimate::LineItemTax});
    estimate.init_dependant_list(@response[:estimate], :credit_note_estimates,
    {:line_items => CreditNoteEstimate::LineItem, :discounts => CreditNoteEstimate::Discount, :taxes => CreditNoteEstimate::Tax, :line_item_taxes => CreditNoteEstimate::LineItemTax});
    return estimate;
end

#event ⇒ Object



97
98
99
100
101
# File 'lib/chargebee/result.rb', line 97

def event() 
    event = get(:event, Event,
    {:webhooks => Event::Webhook});
    return event;
end

#hosted_page ⇒ Object



53
54
55
56
# File 'lib/chargebee/result.rb', line 53

def hosted_page() 
    hosted_page = get(:hosted_page, HostedPage);
    return hosted_page;
end

#invoice ⇒ Object



30
31
32
33
34
# File 'lib/chargebee/result.rb', line 30

def invoice() 
    invoice = get(:invoice, Invoice,
    {:line_items => Invoice::LineItem, :discounts => Invoice::Discount, :taxes => Invoice::Tax, :line_item_taxes => Invoice::LineItemTax, :linked_payments => Invoice::LinkedPayment, :applied_credits => Invoice::AppliedCredit, :adjustment_credit_notes => Invoice::AdjustmentCreditNote, :issued_credit_notes => Invoice::IssuedCreditNote, :linked_orders => Invoice::LinkedOrder, :notes => Invoice::Note, :shipping_address => Invoice::ShippingAddress, :billing_address => Invoice::BillingAddress});
    return invoice;
end

#order ⇒ Object



42
43
44
45
# File 'lib/chargebee/result.rb', line 42

def order() 
    order = get(:order, Order);
    return order;
end

#plan ⇒ Object



72
73
74
75
# File 'lib/chargebee/result.rb', line 72

def plan() 
    plan = get(:plan, Plan);
    return plan;
end

#portal_session ⇒ Object



113
114
115
116
117
# File 'lib/chargebee/result.rb', line 113

def portal_session() 
    portal_session = get(:portal_session, PortalSession,
    {:linked_customers => PortalSession::LinkedCustomer});
    return portal_session;
end

#subscription ⇒ Object



8
9
10
11
12
# File 'lib/chargebee/result.rb', line 8

def subscription() 
    subscription = get(:subscription, Subscription,
    {:addons => Subscription::Addon, :coupons => Subscription::Coupon, :shipping_address => Subscription::ShippingAddress});
    return subscription;
end

#third_party_payment_method ⇒ Object



25
26
27
28
# File 'lib/chargebee/result.rb', line 25

def third_party_payment_method() 
    third_party_payment_method = get(:third_party_payment_method, ThirdPartyPaymentMethod);
    return third_party_payment_method;
end

#transaction ⇒ Object



47
48
49
50
51
# File 'lib/chargebee/result.rb', line 47

def transaction() 
    transaction = get(:transaction, Transaction,
    {:linked_invoices => Transaction::LinkedInvoice, :linked_credit_notes => Transaction::LinkedCreditNote, :linked_refunds => Transaction::LinkedRefund});
    return transaction;
end