View Source ExOpenAI.Components.UploadCertificateRequest (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema UploadCertificateRequest.

Fields

  • :content - required - String.t()
    The certificate content in PEM format

  • :name - optional - String.t()
    An optional name for the certificate

Summary

Types

@type t() :: %ExOpenAI.Components.UploadCertificateRequest{
  content: String.t(),
  name: String.t() | nil
}