Variable $CreateDefaultDataViewModelConst

$CreateDefaultDataViewModel: {
    description: "View Model for the Create Default Data Feature. Represents a new default client and a new default llm.";
    properties: {
        client_id: {
            description: "Client id of the new default client.";
            isRequired: true;
            type: "number";
        };
        code: {
            isRequired: true;
            type: "number";
        };
        errorCode: {
            contains: readonly [{
                type: "number";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorMessage: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorName: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorType: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        llm_id: {
            description: "LLM id of the new default llm.";
            isRequired: true;
            type: "number";
        };
        status: {
            isRequired: true;
            type: "boolean";
        };
    };
} = ...

Type declaration

  • Readonly description: "View Model for the Create Default Data Feature. Represents a new default client and a new default llm."
  • Readonly properties: {
        client_id: {
            description: "Client id of the new default client.";
            isRequired: true;
            type: "number";
        };
        code: {
            isRequired: true;
            type: "number";
        };
        errorCode: {
            contains: readonly [{
                type: "number";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorMessage: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorName: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        errorType: {
            contains: readonly [{
                type: "string";
            }, {
                type: "null";
            }];
            type: "any-of";
        };
        llm_id: {
            description: "LLM id of the new default llm.";
            isRequired: true;
            type: "number";
        };
        status: {
            isRequired: true;
            type: "boolean";
        };
    }
    • Readonly client_id: {
          description: "Client id of the new default client.";
          isRequired: true;
          type: "number";
      }
      • Readonly description: "Client id of the new default client."
      • Readonly isRequired: true
      • Readonly type: "number"
    • Readonly code: {
          isRequired: true;
          type: "number";
      }
      • Readonly isRequired: true
      • Readonly type: "number"
    • Readonly errorCode: {
          contains: readonly [{
              type: "number";
          }, {
              type: "null";
          }];
          type: "any-of";
      }
      • Readonly contains: readonly [{
            type: "number";
        }, {
            type: "null";
        }]
      • Readonly type: "any-of"
    • Readonly errorMessage: {
          contains: readonly [{
              type: "string";
          }, {
              type: "null";
          }];
          type: "any-of";
      }
      • Readonly contains: readonly [{
            type: "string";
        }, {
            type: "null";
        }]
      • Readonly type: "any-of"
    • Readonly errorName: {
          contains: readonly [{
              type: "string";
          }, {
              type: "null";
          }];
          type: "any-of";
      }
      • Readonly contains: readonly [{
            type: "string";
        }, {
            type: "null";
        }]
      • Readonly type: "any-of"
    • Readonly errorType: {
          contains: readonly [{
              type: "string";
          }, {
              type: "null";
          }];
          type: "any-of";
      }
      • Readonly contains: readonly [{
            type: "string";
        }, {
            type: "null";
        }]
      • Readonly type: "any-of"
    • Readonly llm_id: {
          description: "LLM id of the new default llm.";
          isRequired: true;
          type: "number";
      }
      • Readonly description: "LLM id of the new default llm."
      • Readonly isRequired: true
      • Readonly type: "number"
    • Readonly status: {
          isRequired: true;
          type: "boolean";
      }
      • Readonly isRequired: true
      • Readonly type: "boolean"

Generated using TypeDoc