Sha256: 2cf02bb4131af615e6c1ee1211bd4ae669f37a316fd42392ab39d5c50bd1cc3a
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
=begin #Money Forward Kessai API v2 #Money Forward Kessai REST API The version of the OpenAPI document: 2.6.7 Contact: api.support@mfkessai.co.jp Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.0.1 =end require 'spec_helper' require 'json' # Unit tests for MfkOpenapiRubyClient::PayoutRefundApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'PayoutRefundApi' do before do # run before each test @api_instance = MfkOpenapiRubyClient::PayoutRefundApi.new end after do # run after each test end describe 'test an instance of PayoutRefundApi' do it 'should create an instance of PayoutRefundApi' do expect(@api_instance).to be_instance_of(MfkOpenapiRubyClient::PayoutRefundApi) end end # unit tests for get_payout_refunds_list # 返金一覧取得 # @param [Hash] opts the optional parameters # @option opts [String] :payout_id 任意の振込IDを指定します。指定した振込に含まれる返金が返却されます。 # @option opts [String] :after 任意のリソースIDを指定します。追加日時の降順でこのIDのリソースよりも後のリソースを取得します。この時`after`で指定したIDのリソースは結果に含まれません。 # @option opts [String] :before 任意のリソースIDを指定します。追加日時の降順でこのIDのリソースよりも前のリソースを取得します。この時`before`で指定したIDのリソースは結果に含まれません。 # @option opts [Integer] :limit 取得したいリソースの最大件数を指定します。1~200の間の整数で指定してください。指定がない場合は20になります。 # @return [PayoutRefundsList] describe 'get_payout_refunds_list test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mfk_openapi_ruby_client-1.0.0 | spec/api/payout_refund_api_spec.rb |