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

org.rapaio.jupyter.kernel.message.messages.ShellCommInfoRequest 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 ShellCommInfoRequest(
        @SerializedName("target_name") String targetName) implements ContentType {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy