package com.igaworks.ssp; /* loaded from: classes2.dex */ public class AdPopcornSSPUserProperties { public final String country; public final int gender; public final String language; public final int yearOfBirth; public static class Builder { /* renamed from: a, reason: collision with root package name */ private int f5700a = 0; /* renamed from: b, reason: collision with root package name */ private int f5701b = -1; /* renamed from: c, reason: collision with root package name */ private String f5702c = null; /* renamed from: d, reason: collision with root package name */ private String f5703d = null; public final AdPopcornSSPUserProperties build() { return new AdPopcornSSPUserProperties(this); } public final Builder country(String str) { this.f5702c = str; return this; } public final Builder gender(int i10) { this.f5701b = i10; return this; } public final Builder language(String str) { this.f5703d = str; return this; } public final Builder yob(int i10) { this.f5700a = i10; return this; } } private AdPopcornSSPUserProperties(Builder builder) { this.yearOfBirth = builder.f5700a; this.gender = builder.f5701b; this.country = builder.f5702c; this.language = builder.f5703d; } }