Sha256: bb8c4183266e73b30bb2f102ae7482d9cd0251c8ce696d5836c832c4828d9ae2
Contents?: true
Size: 1.01 KB
Versions: 23
Compression:
Stored size: 1.01 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class AtsCreateCandidateNoteRequest < ::StackOne::Utils::FieldAugmented extend T::Sig field :ats_create_notes_request_dto, ::StackOne::Shared::AtsCreateNotesRequestDto, { '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_create_notes_request_dto: ::StackOne::Shared::AtsCreateNotesRequestDto, id: ::String, x_account_id: ::String).void } def initialize(ats_create_notes_request_dto: nil, id: nil, x_account_id: nil) @ats_create_notes_request_dto = ats_create_notes_request_dto @id = id @x_account_id = x_account_id end end end end
Version data entries
23 entries across 23 versions & 1 rubygems