Update a Listing with the provided details.
export type UpdateListingProps = {
listingId: string;
price?: number;
liveTime?: number;
status?: ListingUpdateStatus;
walletUserId?: string;
currencyId?: string;
currency?: string;
}
const success = await assetlayer.listings.updateListing({
listingId: 'listingId',
price: 10
});
type ReturnType = boolean;