Skip to content

Commit

Permalink
fix: add readable and logo fields to carrier type (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashahilton00 authored Jul 1, 2024
1 parent 083bfc9 commit 8b19e28
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions carrier.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ type CarrierAccount struct {
// CarrierType contains information on a supported carrier. It can be used to
// determine the valid fields for a carrier account.
type CarrierType struct {
Object string `json:"object,omitempty"`
Type string `json:"type,omitempty"`
Fields *CarrierFields `json:"fields,omitempty"`
Object string `json:"object,omitempty"`
Type string `json:"type,omitempty"`
Readable string `json:"readable,omitempty"`
Logo string `json:"logo,omitempty"`
Fields *CarrierFields `json:"fields,omitempty"`
}

type carrierAccountRequest struct {
Expand Down

0 comments on commit 8b19e28

Please sign in to comment.