account.proto 544 B

12345678910111213141516
  1. syntax = "proto3";
  2. package xray.proxy.vless;
  3. option csharp_namespace = "Xray.Proxy.Vless";
  4. option go_package = "github.com/xtls/xray-core/proxy/vless";
  5. option java_package = "com.xray.proxy.vless";
  6. option java_multiple_files = true;
  7. message Account {
  8. // ID of the account, in the form of a UUID, e.g., "66ad4540-b58c-4ad2-9926-ea63445a9b57".
  9. string id = 1;
  10. // Flow settings. May be "xtls-rprx-vision".
  11. string flow = 2;
  12. // Encryption settings. Only applies to client side, and only accepts "none" for now.
  13. string encryption = 3;
  14. }