GptPermission constructor

GptPermission({
  1. required int created,
  2. required String object,
  3. required String id,
  4. String? group,
  5. required bool allowCreateEngine,
  6. required bool allowFineTuning,
  7. required bool allowLogprobs,
  8. required bool allowSampling,
  9. required bool allowSearchIndices,
  10. required bool allowView,
  11. required bool isBlocking,
  12. required String organization,
})

Implementation

GptPermission(
    {required this.created,
    required this.object,
    required this.id,
    this.group,
    required this.allowCreateEngine,
    required this.allowFineTuning,
    required this.allowLogprobs,
    required this.allowSampling,
    required this.allowSearchIndices,
    required this.allowView,
    required this.isBlocking,
    required this.organization});