package com.chartboost.sdk.impl;
/* loaded from: classes2.dex */
public enum y3 {
    CTV("ctv"),
    MOBILE("mobile"),
    OTHER("other");
    
    public final String b;

    y3(String str) {
        this.b = str;
    }

    @Override // java.lang.Enum
    public String toString() {
        return this.b;
    }
}
