Sha256: db431c52fb6c5dc1cae962e45b571a6e57b07cc25865e06bfea6395e77d62402
Contents?: true
Size: 507 Bytes
Versions: 1
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true require 'dry-validation' module TochkaCyclopsApi module Schemas module Responses # Response schema for update_beneficiary_fl request class UpdateBeneficiaryFl < 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_fl.rb |