Type Alias GetCollectionDropInfoResponse

GetCollectionDropInfoResponse: {
    contract: Pick<StudioContract,
        | "address"
        | "dropUrls"
        | "dropName"
        | "dropDescription"
        | "id"
        | "name"> & {
        drops: Pick<ClaimCondition,
            | "id"
            | "startTime"
            | "price"
            | "allowlist"
            | "amount"
            | "limitPerWallet"
            | "currency">[];
    };
}