Variable QueryDelegatorUnbondingDelegationsResponse

QueryDelegatorUnbondingDelegationsResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryDelegatorUnbondingDelegationsResponse;
    encode(message: QueryDelegatorUnbondingDelegationsResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryDelegatorUnbondingDelegationsResponseAmino): QueryDelegatorUnbondingDelegationsResponse;
    fromAminoMsg(object: QueryDelegatorUnbondingDelegationsResponseAminoMsg): QueryDelegatorUnbondingDelegationsResponse;
    fromPartial(object: {
        pagination?: {
            nextKey?: Uint8Array;
            total?: bigint;
        };
        unbondingResponses?: {
            delegatorAddress?: string;
            entries?: {
                balance?: string;
                completionTime?: Date;
                creationHeight?: bigint;
                initialBalance?: string;
            }[];
            validatorAddress?: string;
        }[];
    }): QueryDelegatorUnbondingDelegationsResponse;
    fromProtoMsg(message: QueryDelegatorUnbondingDelegationsResponseProtoMsg): QueryDelegatorUnbondingDelegationsResponse;
    toAmino(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseAmino;
    toAminoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseAminoMsg;
    toProto(message: QueryDelegatorUnbondingDelegationsResponse): Uint8Array;
    toProtoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseProtoMsg;
}