UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

31 lines 870 B
export function instanceOfGetChildInfoAllOfApiKeysV3(value) { let isInstance = true; isInstance = isInstance && 'name' in value; isInstance = isInstance && 'key' in value; return isInstance; } export function GetChildInfoAllOfApiKeysV3FromJSON(json) { return GetChildInfoAllOfApiKeysV3FromJSONTyped(json, false); } export function GetChildInfoAllOfApiKeysV3FromJSONTyped(json, ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { name: json['name'], key: json['key'], }; } export function GetChildInfoAllOfApiKeysV3ToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { name: value.name, key: value.key, }; } //# sourceMappingURL=GetChildInfoAllOfApiKeysV3.js.map