-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathMapRequest.java
More file actions
28 lines (24 loc) · 892 Bytes
/
MapRequest.java
File metadata and controls
28 lines (24 loc) · 892 Bytes
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
package com.uid2.operator.model;
import java.time.Instant;
public final class MapRequest {
public final UserIdentity userIdentity;
public final Instant asOf;
public final IdentityEnvironment identityEnvironment;
public final boolean includePreviousAdvertisingId;
public MapRequest(
UserIdentity userIdentity,
Instant asOf,
IdentityEnvironment identityEnvironment) {
this(userIdentity, asOf, identityEnvironment, true);
}
public MapRequest(
UserIdentity userIdentity,
Instant asOf,
IdentityEnvironment identityEnvironment,
boolean includePreviousAdvertisingId) {
this.userIdentity = userIdentity;
this.asOf = asOf;
this.identityEnvironment = identityEnvironment;
this.includePreviousAdvertisingId = includePreviousAdvertisingId;
}
}