Variable $NewSourceDataViewModel_InputConst

$NewSourceDataViewModel_Input: {
    description: "View Model for the New Source Data Feature.";
    properties: {
        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";
        };
        source_data: {
            contains: readonly [{
                type: "SourceData";
            }, {
                type: "null";
            }];
            description: "The source data object containing the metadata of the registered file.";
            isRequired: true;
            type: "any-of";
        };
        status: {
            isRequired: true;
            type: "boolean";
        };
    };
} = ...

Type declaration

  • Readonly description: "View Model for the New Source Data Feature."
  • Readonly properties: {
        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";
        };
        source_data: {
            contains: readonly [{
                type: "SourceData";
            }, {
                type: "null";
            }];
            description: "The source data object containing the metadata of the registered file.";
            isRequired: true;
            type: "any-of";
        };
        status: {
            isRequired: true;
            type: "boolean";
        };
    }
    • 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 source_data: {
          contains: readonly [{
              type: "SourceData";
          }, {
              type: "null";
          }];
          description: "The source data object containing the metadata of the registered file.";
          isRequired: true;
          type: "any-of";
      }
      • Readonly contains: readonly [{
            type: "SourceData";
        }, {
            type: "null";
        }]
      • Readonly description: "The source data object containing the metadata of the registered file."
      • Readonly isRequired: true
      • Readonly type: "any-of"
    • Readonly status: {
          isRequired: true;
          type: "boolean";
      }
      • Readonly isRequired: true
      • Readonly type: "boolean"

Generated using TypeDoc