Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Sep 2, 2024
1 parent a58a32a commit 17a68dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions json-logs/samples/events/AppRequestedPayload.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"privacy_policy_url": "",
"app_homepage_url": "",
"app_directory_url": "",
"is_granular_bot_app": true,
"is_app_directory_approved": false,
"is_internal": false,
"is_granular_bot_app": false,
"additional_info": "",
"icons": {
"image_32": "",
Expand Down Expand Up @@ -71,4 +71,4 @@
"date_created": 123
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ public class App {
private String privacyPolicyUrl;
private String appHomepageUrl;
private String appDirectoryUrl;
@SerializedName("is_granular_bot_app")
@SerializedName("is_app_directory_approved")
private boolean appDirectoryApproved;
@SerializedName("is_internal")
private boolean internal;
@SerializedName("is_granular_bot_app")
private boolean granularBotApp;
private String additionalInfo;
private AppIcons icons;
}

0 comments on commit 17a68dc

Please sign in to comment.