github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/dhcp_lease_per_ip.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 manager 7 8 type DhcpLeasePerIp struct { 9 10 // expire time of the lease 11 ExpireTime string `json:"expire_time,omitempty"` 12 13 // ip address of client 14 IpAddress string `json:"ip_address"` 15 16 // lease time of the ip address, in seconds 17 LeaseTime string `json:"lease_time,omitempty"` 18 19 // mac address of client 20 MacAddress string `json:"mac_address"` 21 22 // start time of lease 23 StartTime string `json:"start_time,omitempty"` 24 25 // subnet of client network 26 Subnet string `json:"subnet"` 27 }