This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git

commit aeb6a358f5b758d1a1a77ac2607c21b58066baa1
Author: Dewayne Richardson <dewr...@apache.org>
AuthorDate: Fri Mar 23 10:10:35 2018 -0600

    updated to have pointers as nullable
---
 lib/go-tc/v13/cdns.go | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/go-tc/v13/cdns.go b/lib/go-tc/v13/cdns.go
index 9fa6ae1..3037af9 100644
--- a/lib/go-tc/v13/cdns.go
+++ b/lib/go-tc/v13/cdns.go
@@ -75,26 +75,26 @@ type CDNNullable struct {
        // enables Domain Name Security Extensions on the specified CDN
        //
        // required: true
-       DNSSECEnabled bool `json:"dnssecEnabled" db:"dnssec_enabled"`
+       DNSSECEnabled *bool `json:"dnssecEnabled" db:"dnssec_enabled"`
 
        // DomainName of the CDN
        //
        // required: true
-       DomainName string `json:"domainName" db:"domain_name"`
+       DomainName *string `json:"domainName" db:"domain_name"`
 
        // ID of the CDN
        //
        // required: true
-       ID int `json:"id" db:"id"`
+       ID *int `json:"id" db:"id"`
 
        // LastUpdated
        //
-       LastUpdated tc.TimeNoMod `json:"lastUpdated" db:"last_updated"`
+       LastUpdated *tc.TimeNoMod `json:"lastUpdated" db:"last_updated"`
 
        // Name of the CDN
        //
        // required: true
-       Name string `json:"name" db:"name"`
+       Name *string `json:"name" db:"name"`
 }
 
 // CDNSSLKeysResponse ...

-- 
To stop receiving notification emails like this one, please contact
mitchell...@apache.org.

Reply via email to