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