Sha256: bb03866856a4c29537ea5abd021c1af1bdb02fd9fa1228ed627b571952012378
Contents?: true
Size: 543 Bytes
Versions: 1
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true require 'dry-struct' module Types include Dry.Types() end module TochkaCyclopsApi module Schemas module Responses # Response schema for update_beneficiary_ul request class UpdateBeneficiaryUl < Dry::Struct # Schema for beneficiary field of main response class BeneficiaryData < Dry::Struct attribute :inn, Types::Strict::String attribute :id, Types::Strict::String 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/update_beneficiary_ul.rb |