# MyDataMyConsent::OrganizationFinancialTransactionsDto
# Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | [optional] | |
| account_id | String | [optional] | |
| name | String | [optional] | |
| instrument_id | String | [optional] | |
| transaction_type | String | [optional] | |
| quantity | Integer | [optional] | |
| average_price | Float | [optional] | |
| currency | String | [optional] |
# Example
require 'mydatamyconsent'
instance = MyDataMyConsent::OrganizationFinancialTransactionsDto.new(
id: null,
account_id: null,
name: null,
instrument_id: null,
transaction_type: null,
quantity: null,
average_price: null,
currency: null
)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12