OpenAIModelModelPermission constructor

const OpenAIModelModelPermission({
  1. String? id,
  2. DateTime? created,
  3. bool? allowCreateEngine,
  4. bool? allowSampling,
  5. bool? allowLogprobs,
  6. bool? allowSearchIndices,
  7. bool? allowView,
  8. bool? allowFineTuning,
  9. String? organization,
  10. String? group,
  11. bool? isBlocking,
})

This class is used to represent an OpenAI model permission, it's used in OpenAIModelModel.

Implementation

const OpenAIModelModelPermission({
  this.id,
  this.created,
  this.allowCreateEngine,
  this.allowSampling,
  this.allowLogprobs,
  this.allowSearchIndices,
  this.allowView,
  this.allowFineTuning,
  this.organization,
  this.group,
  this.isBlocking,
});