Sha256: f05cab821a9068a5498e80d1cd27704916169982233070cf74076413f108cd03
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class AtsUpdateNotesRequestDto < ::Crystalline::FieldAugmented extend T::Sig # Unique identifier of the author field :author_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('author_id') } } field :content, T.nilable(T::Array[::StackOne::Shared::NoteContentApiModel]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content') } } # Value to pass through to the provider field :passthrough, T.nilable(T::Hash[Symbol, ::Object]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('passthrough') } } # Visibility of the note field :visibility, T.nilable(::StackOne::Shared::AtsUpdateNotesRequestDtoVisibility), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('visibility') } } sig { params(author_id: T.nilable(::String), content: T.nilable(T::Array[::StackOne::Shared::NoteContentApiModel]), passthrough: T.nilable(T::Hash[Symbol, ::Object]), visibility: T.nilable(::StackOne::Shared::AtsUpdateNotesRequestDtoVisibility)).void } def initialize(author_id: nil, content: nil, passthrough: nil, visibility: nil) @author_id = author_id @content = content @passthrough = passthrough @visibility = visibility end end end end
Version data entries
3 entries across 3 versions & 1 rubygems