We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd6621 commit 5ca8890Copy full SHA for 5ca8890
cloudconnexa/network_ip_services.go
@@ -7,6 +7,8 @@ import (
7
"net/http"
8
)
9
10
+// NetworkIPServiceResponse represents the response structure for Network IP service operations.
11
+
12
type NetworkIPServiceResponse struct {
13
Name string `json:"name"`
14
Description string `json:"description"`
@@ -18,6 +20,8 @@ type NetworkIPServiceResponse struct {
18
20
Routes []*Route `json:"routes"`
19
21
}
22
23
+// NetworkIPServicePageResponse represents a paginated response from the CloudConnexa API
24
+// containing a list of IP services and pagination metadata.
25
type NetworkIPServicePageResponse struct {
26
Content []NetworkIPServiceResponse `json:"content"`
27
NumberOfElements int `json:"numberOfElements"`
0 commit comments