All Downloads are FREE. Search and download functionalities are using the official Maven repository.

typescript-fetch.modelEnum.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>modelEnumInterfaces}}

export function {{classname}}FromJSON(json: any): {{classname}} {
    return {{classname}}FromJSONTyped(json, false);
}

export function {{classname}}FromJSONTyped(json: any, ignoreDiscriminator: boolean): {{classname}} {
    return json as {{classname}};
}

export function {{classname}}ToJSON(value?: {{classname}} | null): any {
    return value as any;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy