Skip to content

Commit

Permalink
SDK regeneration (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
  • Loading branch information
fern-api[bot] authored Jan 11, 2024
1 parent 42d07cd commit f4af2c5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion core/client_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ func (c *ClientOptions) cloneHeader() http.Header {
headers := c.HTTPHeader.Clone()
headers.Set("X-Fern-Language", "Go")
headers.Set("X-Fern-SDK-Name", "github.com/seamapi/go")
headers.Set("X-Fern-SDK-Version", "v0.2.1")
headers.Set("X-Fern-SDK-Version", "v0.2.2")
return headers
}
25 changes: 14 additions & 11 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,17 +319,20 @@ func (a AcsSystemSystemType) Ptr() *AcsSystemSystemType {
}

type AcsUser struct {
AcsUserId string `json:"acs_user_id"`
AcsSystemId string `json:"acs_system_id"`
HidAcsSystemId *string `json:"hid_acs_system_id,omitempty"`
WorkspaceId string `json:"workspace_id"`
CreatedAt time.Time `json:"created_at"`
DisplayName string `json:"display_name"`
ExternalType *AcsUserExternalType `json:"external_type,omitempty"`
ExternalTypeDisplayName *string `json:"external_type_display_name,omitempty"`
IsSuspended bool `json:"is_suspended"`
AccessSchedule *AcsUserAccessSchedule `json:"access_schedule,omitempty"`
FullName *string `json:"full_name,omitempty"`
AcsUserId string `json:"acs_user_id"`
AcsSystemId string `json:"acs_system_id"`
HidAcsSystemId *string `json:"hid_acs_system_id,omitempty"`
WorkspaceId string `json:"workspace_id"`
CreatedAt time.Time `json:"created_at"`
DisplayName string `json:"display_name"`
ExternalType *AcsUserExternalType `json:"external_type,omitempty"`
ExternalTypeDisplayName *string `json:"external_type_display_name,omitempty"`
IsSuspended bool `json:"is_suspended"`
AccessSchedule *AcsUserAccessSchedule `json:"access_schedule,omitempty"`
UserIdentityId *string `json:"user_identity_id,omitempty"`
UserIdentityEmailAddress *string `json:"user_identity_email_address,omitempty"`
UserIdentityPhoneNumber *string `json:"user_identity_phone_number,omitempty"`
FullName *string `json:"full_name,omitempty"`
// Deprecated: use email_address.
Email *string `json:"email,omitempty"`
EmailAddress *string `json:"email_address,omitempty"`
Expand Down

0 comments on commit f4af2c5

Please sign in to comment.