All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenback.kit.vision.VisionPhoneAnnotation Maven / Gradle / Ivy

There is a newer version: 1.0.39
Show newest version
package com.greenback.kit.vision;

public class VisionPhoneAnnotation extends VisionAnnotation {
    
    private String e164;
    private String countryCode;
    
    @Override
    public String getType() {
        return "phone";
    }
    
    public String getE164() {
        return e164;
    }

    public void setE164(String e164) {
        this.e164 = e164;
    }

    public String getCountryCode() {
        return countryCode;
    }

    public void setCountryCode(String countryCode) {
        this.countryCode = countryCode;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy