syntax = "proto3";

package dbag.energy.m7t.management.request.v7;

option java_multiple_files = true;
option java_package = "com.deutscheboerse.energy.m7.api.management.request.v7";

/**
 * Subscription with the auth token must be the first message on the channel.
 * Only after successful authentication, server starts listening for Management Requests.
 */
message Subscription {
  string token = 1; // Unique token for user authentication. M7 provides the token within the v6 UserRprt (User report).
}
