Class: Calendly::InviteePayment

Inherits:
Object
  • Object
show all
Includes:
ModelUtils
Defined in:
lib/calendly/models/invitee_payment.rb

Overview

Calendly’s invitee payment model.

Constant Summary

Constants included from ModelUtils

ModelUtils::UUID_FORMAT

Instance Attribute Summary collapse

Method Summary

Methods included from ModelUtils

#client, #id, included, #initialize, #inspect

Instance Attribute Details

#amountObject

@return The amount of the payment.



17
18
19
# File 'lib/calendly/models/invitee_payment.rb', line 17

def amount
  @amount
end

#currencyString

Returns The currency format that the payment is in.

Returns:

  • (String)

    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_idString

Returns Unique identifier for the payment.

Returns:

  • (String)

    Unique identifier for the payment.



11
12
13
# File 'lib/calendly/models/invitee_payment.rb', line 11

def external_id
  @external_id
end

#providerString

Returns Payment provider.

Returns:

  • (String)

    Payment provider.



14
15
16
# File 'lib/calendly/models/invitee_payment.rb', line 14

def provider
  @provider
end

#successfulBoolean

Returns Indicates whether the payment was successfully processed.

Returns:

  • (Boolean)

    Indicates whether the payment was successfully processed.



26
27
28
# File 'lib/calendly/models/invitee_payment.rb', line 26

def successful
  @successful
end

#termsString

Returns Terms of the payment.

Returns:

  • (String)

    Terms of the payment.



23
24
25
# File 'lib/calendly/models/invitee_payment.rb', line 23

def terms
  @terms
end