Загрузка данных


NominalAccountDto:
  type: object
  description: Номинальный счет
  required:
    - currency_code
    - bank_details
  properties:
    id:
      title: ID номинального счета
      type: string
      format: UUID
      readOnly: true
      example: 76db20a5-1f9c-430c-ad81-40f4771ceea3
    ledgerAccountId:
      title: ID номинального счета в ledger
      type: string
      format: UUID
      readOnly: true
      example: 76db20a5-1f9c-430c-ad81-40f4771ceea3
    currency_code:
      title: Валюта
      type: string
      readOnly: false
      example: RUB
    balance:
      title: Баланс счета
      type: string
      format: decimal
      readOnly: true
      example: '10564.74'
    bank_details:
      $ref: '#/RecipientBankDetailsFullDto'
    created_at:
      title: время создания
      type: string
      format: date-time
      readOnly: true
      example: '2021-05-01T10:34:15Z'
    updated_at:
      title: время обновления
      type: string
      format: date-time
      readOnly: true
      example: '2021-08-01T17:34:24Z'