From 4ce0137eccd50bca77ff905fac27e1992ea57d27 Mon Sep 17 00:00:00 2001 From: Rootspring Date: Wed, 25 Sep 2024 06:49:22 -0400 Subject: [PATCH] Update partners.go --- types/partners.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/partners.go b/types/partners.go index ed78913c..81bed9d2 100644 --- a/types/partners.go +++ b/types/partners.go @@ -19,7 +19,7 @@ type Partner struct { CreatedAt time.Time `db:"created_at" json:"created_at" description:"When the partner was created on DB" validate:"required"` UserID string `db:"user_id" json:"-" description:"User ID of the partner. Is an internal field" validate:"required"` User *dovetypes.PlatformUser `db:"-" json:"user" description:"The partner's user information" ci:"internal"` // Must be parsed internally - BotID *string `db:"-" json:"bot_id" description:"The bot ID that is associated with the partner"` + BotID *string `db:"bot_id" json:"bot_id" description:"The bot ID that is associated with the partner"` } // @ci table=partner_types