From d7422714f9ef320ab70fa7d76ee76e1ece512006 Mon Sep 17 00:00:00 2001 From: ssturch <108745158+ssturch@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:51:56 +0300 Subject: [PATCH] Add team account field for UserWithMe --- user.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/user.go b/user.go index 374eddc..8c0b7f3 100644 --- a/user.go +++ b/user.go @@ -66,4 +66,7 @@ type UserWithMe struct { // Personal account from billing Account *PersonalAccountBilling `json:"account,omitempty"` + + // Personal account from billing by opened team + TeamAccount *PersonalAccountBilling `json:"team_account,omitempty"` }