All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rapaio.jupyter.kernel.message.messages.IOPubExecuteInput Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.rapaio.jupyter.kernel.message.messages;

import org.rapaio.jupyter.kernel.message.ContentType;
import org.rapaio.jupyter.kernel.message.MessageType;

import com.google.gson.annotations.SerializedName;

public record IOPubExecuteInput(
        @SerializedName("code") String code,
        @SerializedName("execution_count") int count) implements ContentType {

    @Override
    public MessageType type() {
        return MessageType.IOPUB_EXECUTE_INPUT;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy