From 480ca4eddfbd6b7570bacf11dc8a81ff7766f9e9 Mon Sep 17 00:00:00 2001 From: Stefan Tennigkeit Date: Thu, 8 Feb 2024 14:54:16 +0100 Subject: [PATCH] Remove stray tabs --- customers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/customers.go b/customers.go index badb934..28496a6 100644 --- a/customers.go +++ b/customers.go @@ -36,7 +36,7 @@ type Customer struct { Zip string `json:"zip,omitempty"` LeadCreatedAt string `json:"lead_created_at,omitempty"` FreeTrialStartedAt string `json:"free_trial_started_at,omitempty"` - WebsiteUrl string `json:"website_url,omitempty"` + WebsiteUrl string `json:"website_url,omitempty"` Errors Errors `json:"errors,omitempty"` } @@ -53,7 +53,7 @@ type UpdateCustomer struct { LeadCreatedAt *string `json:"lead_created_at,omitempty"` FreeTrialStartedAt *string `json:"free_trial_started_at,omitempty"` Attributes *Attributes `json:"attributes,omitempty"` - WebsiteUrl *string `json:"website_url,omitempty"` + WebsiteUrl *string `json:"website_url,omitempty"` } // NewCustomer allows creating customer on a new endpoint.