Sha256: cfe0b739a720817c777175dfb6a4e5e80dccf0329852f74f62c6b42ffe26b91f
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# MfkOpenapiRubyClient::TransactionDetail ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **amount** | **Float** | 小計です。単価(`unit_price`)×数量(`quantity`)の金額、またはその税込金額です。 | [optional] | | **description** | **String** | 商品名などです。 | [optional] | | **object** | **String** | このObjectの種別を示します。ここでは必ず`transaction_detail`が入ります。 | [optional] | | **tax_rate_type** | [**TaxRateType**](TaxRateType.md) | | [optional] | | **unit_price** | **Float** | 単価です。 | [optional] | | **quantity** | **Float** | 数量です。 | [optional] | | **tax_included_type** | [**TaxIncludedType**](TaxIncludedType.md) | | [optional] | ## Example ```ruby require 'mfk_openapi_ruby_client' instance = MfkOpenapiRubyClient::TransactionDetail.new( amount: 12000.0, description: 商品名A, object: transaction_detail, tax_rate_type: null, unit_price: 1000.0, quantity: 3.0, tax_included_type: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mfk_openapi_ruby_client-1.0.0 | docs/TransactionDetail.md |