UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

30 lines 1.05 kB
import { exists } from '../runtime.js'; export function instanceOfCustomFieldMultiSelectDropDownContentSelectedOptions(value) { let isInstance = true; return isInstance; } export function CustomFieldMultiSelectDropDownContentSelectedOptionsFromJSON(json) { return CustomFieldMultiSelectDropDownContentSelectedOptionsFromJSONTyped(json, false); } export function CustomFieldMultiSelectDropDownContentSelectedOptionsFromJSONTyped(json, ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { ids: !exists(json, 'ids') ? undefined : json['ids'], values: !exists(json, 'values') ? undefined : json['values'], }; } export function CustomFieldMultiSelectDropDownContentSelectedOptionsToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { ids: value.ids, values: value.values, }; } //# sourceMappingURL=CustomFieldMultiSelectDropDownContentSelectedOptions.js.map