celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
syntax = "proto3";
package celp.protobuf.gw;
import "celp_header.proto";
option optimize_for = SPEED;

/// Defines a request message for a command
message RemoteCommandResponse {
    // Base header from CELP
    celp.protobuf.Header header = 1;

    // Command executed
    string command = 10;

    // Command executed
    repeated string arguments = 15;

    // Contents of stdout
    string stdout = 20;

    // Contents of stderr
    string stderr = 30;

    // Return code of the device.
    int32 return_code = 40;
}