Sha256: 73e3ecfbab4e8a83ce24147ea03ccc9e414097d6c20864985cded2179e91aba5
Contents?: true
Size: 690 Bytes
Versions: 1
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true require 'dry-struct' module Types include Dry.Types() end module TochkaCyclopsApi module Schemas module Responses # Response schema for create_beneficiary_ul request class CreateBeneficiaryUl < Dry::Struct # Schema for beneficiary field of main response class BeneficiaryData < Dry::Struct attribute :inn, Types::Strict::String attribute :id, Types::Strict::String attribute :nominal_account_code, Types::Strict::String.optional attribute :nominal_account_bic, Types::Strict::String.optional end attribute :beneficiary, BeneficiaryData end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tochka_cyclops_api-0.4.0 | lib/tochka_cyclops_api/schemas/responses/create_beneficiary_ul.rb |