Sha256: 349ca8c1783013e87dffc207b6ce317e80e92ef9c899c8882e2096416c397ff1
Contents?: true
Size: 1.04 KB
Versions: 12
Compression:
Stored size: 1.04 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class AtsRejectApplicationRequest < ::StackOne::Utils::FieldAugmented extend T::Sig field :ats_reject_application_request_dto, ::StackOne::Shared::AtsRejectApplicationRequestDto, { 'request': { 'media_type': 'application/json' } } field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } # The account identifier field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } } sig { params(ats_reject_application_request_dto: ::StackOne::Shared::AtsRejectApplicationRequestDto, id: ::String, x_account_id: ::String).void } def initialize(ats_reject_application_request_dto: nil, id: nil, x_account_id: nil) @ats_reject_application_request_dto = ats_reject_application_request_dto @id = id @x_account_id = x_account_id end end end end
Version data entries
12 entries across 12 versions & 1 rubygems