Expand description

Utility class for converting between JSON strings and typed objects.

remarks

Provides static methods for serializing and deserializing the update item number mutation results.

Constructors§

§

new Convert(): Convert

Methods§

Source§

toUpdateItemNumberRawResult(json: string): UpdateItemNumberRawResult

Converts a JSON string to an UpdateItemNumberRawResult object.

example
const result = Convert.toUpdateItemNumberRawResult(jsonString);
Source§

updateItemNumberRawResultToJson(value: UpdateItemNumberRawResult): string

Converts an UpdateItemNumberRawResult object to a JSON string.

example
const jsonString = Convert.updateItemNumberRawResultToJson(result);