Skip to content

Commit 6f6cc29

Browse files
feat: link response models to their methods in yard doc (#198)
1 parent 6416b4c commit 6f6cc29

52 files changed

Lines changed: 57 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/orb/models/alert.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#retrieve
56
class Alert < Orb::BaseModel
67
# @!attribute id
78
# Also referred to as alert_id in this documentation.

lib/orb/models/billable_metric.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Metrics#create
56
class BillableMetric < Orb::BaseModel
67
# @!attribute id
78
#

lib/orb/models/coupon.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Coupons#create
56
class Coupon < Orb::BaseModel
67
# @!attribute id
78
# Also referred to as coupon_id in this documentation.

lib/orb/models/credit_note.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::CreditNotes#create
56
class CreditNote < Orb::BaseModel
67
# @!attribute id
78
# The Orb id of this credit note.

lib/orb/models/customer.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Customers#create
56
class Customer < Orb::BaseModel
67
# @!attribute id
78
#

lib/orb/models/customers/balance_transaction_create_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module Orb
44
module Models
55
module Customers
6+
# @see Orb::Resources::Customers::BalanceTransactions#create
67
class BalanceTransactionCreateResponse < Orb::BaseModel
78
# @!attribute id
89
# A unique id for this transaction.

lib/orb/models/customers/balance_transaction_list_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module Orb
44
module Models
55
module Customers
6+
# @see Orb::Resources::Customers::BalanceTransactions#list
67
class BalanceTransactionListResponse < Orb::BaseModel
78
# @!attribute id
89
# A unique id for this transaction.

lib/orb/models/customers/cost_list_by_external_id_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module Orb
44
module Models
55
module Customers
6+
# @see Orb::Resources::Customers::Costs#list_by_external_id
67
class CostListByExternalIDResponse < Orb::BaseModel
78
# @!attribute data
89
#

lib/orb/models/customers/cost_list_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module Orb
44
module Models
55
module Customers
6+
# @see Orb::Resources::Customers::Costs#list
67
class CostListResponse < Orb::BaseModel
78
# @!attribute data
89
#

lib/orb/models/customers/credit_list_by_external_id_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module Orb
44
module Models
55
module Customers
6+
# @see Orb::Resources::Customers::Credits#list_by_external_id
67
class CreditListByExternalIDResponse < Orb::BaseModel
78
# @!attribute id
89
#

0 commit comments

Comments
 (0)