Skip to content

Commit

Permalink
(fix): Temporarily change startsAt and endsAt types to string* (#…
Browse files Browse the repository at this point in the history
…29)

* Update credentials.go

* fix compile breaks and fernignore
  • Loading branch information
dsinghvi authored Feb 7, 2024
1 parent 389920a commit 61f9976
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ README.md
# Integration Tests
test/

# ISO Datetime Serialization
acs/credentials.go

# ci.yml installs Fake Seam
.github/workflows/ci.yml

Expand Down
5 changes: 2 additions & 3 deletions acs/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
json "encoding/json"
fmt "fmt"
core "github.com/seamapi/go/core"
time "time"
)

type CredentialsAssignRequest struct {
Expand All @@ -21,8 +20,8 @@ type CredentialsCreateRequest struct {
IsMultiPhoneSyncCredential *bool `json:"is_multi_phone_sync_credential,omitempty"`
ExternalType *CredentialsCreateRequestExternalType `json:"external_type,omitempty"`
VisionlineMetadata *CredentialsCreateRequestVisionlineMetadata `json:"visionline_metadata,omitempty"`
StartsAt *time.Time `json:"starts_at,omitempty"`
EndsAt *time.Time `json:"ends_at,omitempty"`
StartsAt *string `json:"starts_at,omitempty"`
EndsAt *string `json:"ends_at,omitempty"`
}

type CredentialsDeleteRequest struct {
Expand Down

0 comments on commit 61f9976

Please sign in to comment.