mirror of
				https://github.com/onepanelio/onepanel.git
				synced 2025-10-31 16:56:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			306 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			306 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package api;
 | |
| 
 | |
| message Parameter {
 | |
|     string name = 1;
 | |
|     string value = 2;
 | |
|     string type = 3;
 | |
|     string displayName = 4;
 | |
|     string hint = 5;
 | |
|     bool required = 6;
 | |
| 
 | |
|     repeated ParameterOption options = 7;
 | |
| }
 | |
| 
 | |
| message ParameterOption {
 | |
|     string name = 1;
 | |
|     string value = 2;
 | |
| } | 
