From 5fbdbc3d87e23c21eb744ef762686f735e84b8fe Mon Sep 17 00:00:00 2001 From: nicolas lopes <57234795+NicolasLopes7@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:49:27 -0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Giannis Katsanos --- organization_domain.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/organization_domain.go b/organization_domain.go index b8498cf..2cd2d07 100644 --- a/organization_domain.go +++ b/organization_domain.go @@ -1,6 +1,6 @@ package clerk -type organizationDomainVerificationResponse struct { +type OrganizationDomainVerification struct { Status string `json:"status"` Strategy string `json:"strategy"` Attempts *int `json:"attempts"` @@ -19,7 +19,7 @@ type OrganizationDomain struct { TotalPendingInvitations int `json:"total_pending_invitations"` TotalPendingSuggestions int `json:"total_pending_suggestions"` CreatedAt int64 `json:"created_at"` - UpdatedAt int64 + UpdatedAt int64 `json:"updated_at"` } type OrganizationDomainList struct {