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

a.clickzetta-java.1.2.9.source-code.share_meta.proto Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
syntax = "proto3";

package cz.proto;

import 'object_identifier.proto';

message Share {
  ObjectIdentifier provider_workspace = 1;

  enum Kind {
    INBOUND = 0;
    OUTBOUND = 1;
  }
  // Kind is only for show shares
  Kind kind = 2;

  enum Scope {
    PRIVATE = 0;
    PUBLIC = 1;
  }
  Scope scope = 3;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy