You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line/line-openapi#106
Type for `CreateAudienceGroupResponse#expireTimestamp` is not float or
double, but integer actually. This change fixes type.
Co-authored-by: github-actions <[email protected]>
created: Optional[StrictInt] =Field(None, description="When the audience was created (in UNIX time).")
35
35
permission: Optional[StrictStr] =Field(None, description="Audience's update permission. Audiences linked to the same channel will be READ_WRITE. `READ`: Can use only. `READ_WRITE`: Can use and update. ")
36
-
expire_timestamp: Optional[Union[StrictFloat, StrictInt]] =Field(None, alias="expireTimestamp", description="Time of audience expiration. Only returned for specific audiences. ")
36
+
expire_timestamp: Optional[StrictInt] =Field(None, alias="expireTimestamp", description="Time of audience expiration. Only returned for specific audiences. ")
37
37
is_ifa_audience: Optional[StrictBool] =Field(None, alias="isIfaAudience", description="The value indicating the type of account to be sent, as specified when creating the audience for uploading user IDs. One of: `true`: Accounts are specified with IFAs. `false` (default): Accounts are specified with user IDs. ")
0 commit comments