-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAPNConfigFields.java
More file actions
61 lines (49 loc) · 1.37 KB
/
APNConfigFields.java
File metadata and controls
61 lines (49 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.jetbrains.annotations.Nullable;
@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class APNConfigFields {
@JsonProperty("development")
private Boolean development;
@JsonProperty("enabled")
private Boolean enabled;
@Nullable
@JsonProperty("auth_key")
private String authKey;
@Nullable
@JsonProperty("auth_type")
private String authType;
@Nullable
@JsonProperty("bundle_id")
private String bundleID;
@Nullable
@JsonProperty("host")
private String host;
@Nullable
@JsonProperty("key_id")
private String keyID;
@Nullable
@JsonProperty("notification_template")
private String notificationTemplate;
@Nullable
@JsonProperty("p12_cert")
private String p12Cert;
@Nullable
@JsonProperty("team_id")
private String teamID;
}