package com.airbnb.lottie.model; import android.graphics.Typeface; /* loaded from: classes2.dex */ public class Font { private final float ascent; private final String family; private final String name; private final String style; private Typeface typeface; float getAscent() { return this.ascent; } public String getFamily() { return this.family; } public String getName() { return this.name; } public String getStyle() { return this.style; } public Typeface getTypeface() { return this.typeface; } public void setTypeface(Typeface typeface) { this.typeface = typeface; } public Font(String str, String str2, String str3, float f) { this.family = str; this.name = str2; this.style = str3; this.ascent = f; } }