Get Listings from a single Collection for a User with optional status filter.
export type GetUserCollectionListingsProps = {
collectionId: string;
status?: ListingStatus = 'active';
walletUserId?: string;
}
const listings = await assetlayer.listings.getUserCollectionListings({
collectionId: 'collectionId'
});
type ReturnType = Listing[];