Skip to content

Commit 1166871

Browse files
github-actions[bot]github-actions
andauthored
Fix type of expireTimestamp (#581)
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]>
1 parent 46d71fd commit 1166871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

line-openapi

linebot/manage_audience/model_create_audience_group_response.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type CreateAudienceGroupResponse struct {
5757
/**
5858
* Time of audience expiration. Only returned for specific audiences.
5959
*/
60-
ExpireTimestamp float32 `json:"expireTimestamp"`
60+
ExpireTimestamp int64 `json:"expireTimestamp"`
6161

6262
/**
6363
* 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

Comments
 (0)