Class: Iyzipay::Model::V2::Product
- Inherits:
-
IyzipayResourceV2
- Object
- IyzipayResource
- IyzipayResourceV2
- Iyzipay::Model::V2::Product
- Defined in:
- lib/iyzipay/model/v2/product.rb
Constant Summary collapse
- RESOURCE =
'/v2/subscription/products'
Constants inherited from IyzipayResourceV2
IyzipayResourceV2::AUTHORIZATION_HEADER_STRING
Constants inherited from IyzipayResource
IyzipayResource::AUTHORIZATION_HEADER_NAME, IyzipayResource::AUTHORIZATION_HEADER_STRING, IyzipayResource::RANDOM_CHARS, IyzipayResource::RANDOM_HEADER_NAME, IyzipayResource::RANDOM_STRING_SIZE
Instance Method Summary collapse
Methods inherited from IyzipayResourceV2
#calculate_hash, #get_http_header, #prepare_authorization_string
Methods inherited from IyzipayResource
#calculate_hash, #format_header_string, #get_http_header, #get_plain_http_header, #json_decode, #prepare_authorization_string, #random_string, #to_pki_string
Instance Method Details
#create(request, options) ⇒ Object
14 15 16 17 18 |
# File 'lib/iyzipay/model/v2/product.rb', line 14 def create(request, ) data = request.to_json header = get_http_header(, RESOURCE, data) HttpClient.post_even_on_error(base_url(), header, data) end |
#list(options) ⇒ Object
9 10 11 12 |
# File 'lib/iyzipay/model/v2/product.rb', line 9 def list() header = get_http_header(, RESOURCE) HttpClient.get_even_on_error(base_url(), header) end |
#update(request, options) ⇒ Object
20 21 22 23 24 25 |
# File 'lib/iyzipay/model/v2/product.rb', line 20 def update(request, ) data = request.to_json path = path_for_action(request[:productReferenceCode]) header = get_http_header(, path, data) HttpClient.post_even_on_error(base_url(, path), header, data) end |