package com.fyber.inneractive.sdk.external; /* loaded from: classes2.dex */ public enum InneractiveMediationName { ADMOB("admob"), DFP(InneractiveMediationNameConsts.DFP), FYBER("fyber"), OTHER("other"); final String key; InneractiveMediationName(String str) { this.key = str; } public String getKey() { return this.key; } }