Class: ChargeBee::CouponCode
- Defined in:
- lib/chargebee/models/coupon_code.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#coupon_id ⇒ Object
Returns the value of attribute coupon_id.
-
#coupon_set_id ⇒ Object
Returns the value of attribute coupon_set_id.
-
#coupon_set_name ⇒ Object
Returns the value of attribute coupon_set_name.
-
#status ⇒ Object
Returns the value of attribute status.
Class Method Summary collapse
- .archive(id, env = nil, headers = {}) ⇒ Object
-
.create(params, env = nil, headers = {}) ⇒ Object
OPERATIONS ———–.
- .list(params = {}, env = nil, headers = {}) ⇒ Object
- .retrieve(id, env = nil, headers = {}) ⇒ Object
Methods inherited from Model
construct, #init_dependant, #init_dependant_list, #initialize, #inspect, #load, #method_missing, #replace_white_space_with_underscore, #to_s, uri_path
Constructor Details
This class inherits a constructor from ChargeBee::Model
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ChargeBee::Model
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
4 5 6 |
# File 'lib/chargebee/models/coupon_code.rb', line 4 def code @code end |
#coupon_id ⇒ Object
Returns the value of attribute coupon_id.
4 5 6 |
# File 'lib/chargebee/models/coupon_code.rb', line 4 def coupon_id @coupon_id end |
#coupon_set_id ⇒ Object
Returns the value of attribute coupon_set_id.
4 5 6 |
# File 'lib/chargebee/models/coupon_code.rb', line 4 def coupon_set_id @coupon_set_id end |
#coupon_set_name ⇒ Object
Returns the value of attribute coupon_set_name.
4 5 6 |
# File 'lib/chargebee/models/coupon_code.rb', line 4 def coupon_set_name @coupon_set_name end |
#status ⇒ Object
Returns the value of attribute status.
4 5 6 |
# File 'lib/chargebee/models/coupon_code.rb', line 4 def status @status end |
Class Method Details
.archive(id, env = nil, headers = {}) ⇒ Object
21 22 23 |
# File 'lib/chargebee/models/coupon_code.rb', line 21 def self.archive(id, env=nil, headers={}) Request.send('post', uri_path("coupon_codes",id.to_s,"archive"), {}, env, headers) end |
.create(params, env = nil, headers = {}) ⇒ Object
OPERATIONS
9 10 11 |
# File 'lib/chargebee/models/coupon_code.rb', line 9 def self.create(params, env=nil, headers={}) Request.send('post', uri_path("coupon_codes"), params, env, headers) end |
.list(params = {}, env = nil, headers = {}) ⇒ Object
17 18 19 |
# File 'lib/chargebee/models/coupon_code.rb', line 17 def self.list(params={}, env=nil, headers={}) Request.send_list_request('get', uri_path("coupon_codes"), params, env, headers) end |