github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/instruction_info.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package administration 7 8 type InstructionInfo struct { 9 10 // A list of actions that are to be applied to resources 11 Actions []string `json:"actions,omitempty"` 12 13 // A list of fields that are displayable to users in a table 14 Fields []string `json:"fields,omitempty"` 15 16 // UUID of the instruction 17 Id string `json:"id,omitempty"` 18 19 // Instruction name 20 Name string `json:"name,omitempty"` 21 }