Skip to content

Commit

Permalink
feat(api): update via SDK Studio (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Mar 21, 2024
1 parent 3c1de95 commit 15686e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from ....._models import BaseModel

__all__ = ["AccessIdentity", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "Geo", "Idp", "MTLSAuth"]
__all__ = ["AccessIdentity", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "Geo", "IDP", "MTLSAuth"]


class DeviceSessions(BaseModel):
Expand Down Expand Up @@ -43,7 +43,7 @@ class Geo(BaseModel):
country: Optional[str] = None


class Idp(BaseModel):
class IDP(BaseModel):
id: Optional[str] = None

type: Optional[str] = None
Expand Down Expand Up @@ -80,7 +80,7 @@ class AccessIdentity(BaseModel):

iat: Optional[float] = None

idp: Optional[Idp] = None
idp: Optional[IDP] = None

ip: Optional[str] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"DevicePosture",
"DevicePostureCheck",
"Geo",
"Idp",
"IDP",
"MTLSAuth",
]

Expand Down Expand Up @@ -51,7 +51,7 @@ class Geo(BaseModel):
country: Optional[str] = None


class Idp(BaseModel):
class IDP(BaseModel):
id: Optional[str] = None

type: Optional[str] = None
Expand Down Expand Up @@ -88,7 +88,7 @@ class ActiveSessionGetResponse(BaseModel):

iat: Optional[float] = None

idp: Optional[Idp] = None
idp: Optional[IDP] = None

ip: Optional[str] = None

Expand Down

0 comments on commit 15686e4

Please sign in to comment.