Skip to content

Commit

Permalink
billing: Add CreateBillingContactRequest struct
Browse files Browse the repository at this point in the history
  • Loading branch information
igo95862 committed Jan 14, 2022
1 parent 1f053ca commit 83b782a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions billing_contact.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package tdproto

type CreateBillingContactRequest struct {
Phone string `json:"phone"`
GivenName string `json:"given_name"`
FamilyName string `json:"family_name"`
Patronymic string `json:"patronymic"`
Status TeamStatus `json:"status"`
Role string `json:"role"`
UserUid string `json:"user_uid"`
Sections []string `json:"sections"`
}

0 comments on commit 83b782a

Please sign in to comment.