Class: Calendly::InviteePayment
- Inherits:
-
Object
- Object
- Calendly::InviteePayment
- Includes:
- ModelUtils
- Defined in:
- lib/calendly/models/invitee_payment.rb
Overview
Calendly’s invitee payment model.
Constant Summary
Constants included from ModelUtils
Instance Attribute Summary collapse
-
#amount ⇒ Object
@return The amount of the payment.
-
#currency ⇒ String
The currency format that the payment is in.
-
#external_id ⇒ String
Unique identifier for the payment.
-
#provider ⇒ String
Payment provider.
-
#successful ⇒ Boolean
Indicates whether the payment was successfully processed.
-
#terms ⇒ String
Terms of the payment.
Method Summary
Methods included from ModelUtils
#client, #id, included, #initialize, #inspect
Instance Attribute Details
#amount ⇒ Object
@return The amount of the payment.
17 18 19 |
# File 'lib/calendly/models/invitee_payment.rb', line 17 def amount @amount end |
#currency ⇒ String
Returns The currency format that the payment is in.
20 21 22 |
# File 'lib/calendly/models/invitee_payment.rb', line 20 def currency @currency end |
#external_id ⇒ String
Returns Unique identifier for the payment.
11 12 13 |
# File 'lib/calendly/models/invitee_payment.rb', line 11 def external_id @external_id end |
#provider ⇒ String
Returns Payment provider.
14 15 16 |
# File 'lib/calendly/models/invitee_payment.rb', line 14 def provider @provider end |
#successful ⇒ Boolean
Returns Indicates whether the payment was successfully processed.
26 27 28 |
# File 'lib/calendly/models/invitee_payment.rb', line 26 def successful @successful end |
#terms ⇒ String
Returns Terms of the payment.
23 24 25 |
# File 'lib/calendly/models/invitee_payment.rb', line 23 def terms @terms end |