export type UpdateAssetProps = {
assetId: string;
properties: BasicAnyObject; // JSON including all properties that should be updated with updated values
}
const asset= await assetlayer.assets.updateAsset({
properties: {key1:value1, key2:value2},
assetId: 'assetId'
});
type ReturnType = string;