# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true require 'sorbet-runtime' require 'faraday' module StackOne module Shared class NoteContentApiModel < ::StackOne::Utils::FieldAugmented extend T::Sig # Body of the note field :body, String, { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('body') } } sig { params(body: String).void } def initialize(body: nil) @body = body end end end end