Sha256: d59b1ebedc843d9d15d56a36c6babb712aa7463e28a9fdf643fe6c8b00eeb77f
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class HrisBatchUploadEmployeeDocumentRequest < ::Crystalline::FieldAugmented extend T::Sig field :hris_batch_document_upload_request_dto, ::StackOne::Shared::HrisBatchDocumentUploadRequestDto, { '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(hris_batch_document_upload_request_dto: ::StackOne::Shared::HrisBatchDocumentUploadRequestDto, id: ::String, x_account_id: ::String).void } def initialize(hris_batch_document_upload_request_dto: nil, id: nil, x_account_id: nil) @hris_batch_document_upload_request_dto = hris_batch_document_upload_request_dto @id = id @x_account_id = x_account_id end end end end
Version data entries
3 entries across 3 versions & 1 rubygems