Sha256: beefdd19554751f5fb1b1cb362cb6a417f782cba1cc4dc4ae57b67417f7dc77e
Contents?: true
Size: 467 Bytes
Versions: 1
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true require 'dry-validation' module TochkaCyclopsApi module Schemas module Requests # https://api.tochka.com/static/v1/tender-docs/cyclops/main/api_v2.html#api-v2-get-beneficiary class GetBeneficiary < Dry::Validation::Contract schema do required(:beneficiary_id).value(:string) end EXAMPLE = " { beneficiary_id: '981fee11-9969-4e80-9f5f-02af462cb51e' } " 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/requests/get_beneficiary.rb |