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

Module for representing the OpenAI schema DeleteFineTuningCheckpointPermissionResponse.

Fields

  • :deleted - required - boolean()
    Whether the fine-tuned model checkpoint permission was successfully deleted.

  • :id - required - String.t()
    The ID of the fine-tuned model checkpoint permission that was deleted.

  • :object - required - :"checkpoint.permission"
    The object type, which is always "checkpoint.permission".
    Allowed values: "checkpoint.permission"

Summary

Types

@type t() :: %ExOpenAI.Components.DeleteFineTuningCheckpointPermissionResponse{
  deleted: boolean(),
  id: String.t(),
  object: :"checkpoint.permission"
}