UnassignedFunction.ts — typescript-sdk Source File
Architecture documentation for UnassignedFunction.ts, a typescript file in the typescript-sdk codebase. 2 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR 3df308a3_5ad8_9756_8517_803afe99c2b2["UnassignedFunction.ts"] 41b6b5c2_aa5b_90b9_c373_84e0a8cd9918["runtime.ts"] 3df308a3_5ad8_9756_8517_803afe99c2b2 --> 41b6b5c2_aa5b_90b9_c373_84e0a8cd9918 11568abc_c5bd_8b5d_1ce1_6d595e449b9c["mapValues"] 3df308a3_5ad8_9756_8517_803afe99c2b2 --> 11568abc_c5bd_8b5d_1ce1_6d595e449b9c 955dc16b_7f47_35af_4ddd_10aca9358cb7["DomainClassificationResponse.ts"] 955dc16b_7f47_35af_4ddd_10aca9358cb7 --> 3df308a3_5ad8_9756_8517_803afe99c2b2 style 3df308a3_5ad8_9756_8517_803afe99c2b2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/* tslint:disable */
/* eslint-disable */
/**
* Supermodel
* Code Graphing & Analysis API
*
* The version of the OpenAPI document: 0.9.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { mapValues } from '../runtime';
/**
*
* @export
* @interface UnassignedFunction
*/
export interface UnassignedFunction {
/**
* Function that could not be assigned
* @type {string}
* @memberof UnassignedFunction
*/
functionId: string;
/**
* Reason it was left unassigned
* @type {string}
* @memberof UnassignedFunction
*/
reason: string;
}
/**
* Check if a given object implements the UnassignedFunction interface.
*/
export function instanceOfUnassignedFunction(value: object): value is UnassignedFunction {
if (!('functionId' in value) || value['functionId'] === undefined) return false;
if (!('reason' in value) || value['reason'] === undefined) return false;
return true;
}
export function UnassignedFunctionFromJSON(json: any): UnassignedFunction {
return UnassignedFunctionFromJSONTyped(json, false);
}
export function UnassignedFunctionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnassignedFunction {
if (json == null) {
return json;
}
return {
'functionId': json['functionId'],
'reason': json['reason'],
};
}
export function UnassignedFunctionToJSON(value?: UnassignedFunction | null): any {
if (value == null) {
return value;
}
return {
'functionId': value['functionId'],
'reason': value['reason'],
};
}
Domain
Subdomains
Functions
Types
Dependencies
Imported By
Source
Frequently Asked Questions
What does UnassignedFunction.ts do?
UnassignedFunction.ts is a source file in the typescript-sdk codebase, written in typescript. It belongs to the CodeGraph domain, IR subdomain.
What functions are defined in UnassignedFunction.ts?
UnassignedFunction.ts defines 4 function(s): UnassignedFunctionFromJSON, UnassignedFunctionFromJSONTyped, UnassignedFunctionToJSON, instanceOfUnassignedFunction.
What does UnassignedFunction.ts depend on?
UnassignedFunction.ts imports 2 module(s): mapValues, runtime.ts.
What files import UnassignedFunction.ts?
UnassignedFunction.ts is imported by 1 file(s): DomainClassificationResponse.ts.
Where is UnassignedFunction.ts in the architecture?
UnassignedFunction.ts is located at src/models/UnassignedFunction.ts (domain: CodeGraph, subdomain: IR, directory: src/models).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free