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

com.eligible.model.enrollmentnpi.AuthorizedSigner Maven / Gradle / Ivy

There is a newer version: 1.13.13
Show newest version
package com.eligible.model.enrollmentnpi;


import com.eligible.model.EligibleObject;
import com.eligible.model.Person;
import lombok.EqualsAndHashCode;
import lombok.Getter;

import java.util.List;

@Getter
@EqualsAndHashCode(callSuper = false)
public class AuthorizedSigner extends EligibleObject {

    String contactNumber;
    String email;
    String firstName;
    String lastName;
    String title;
    Signature signature;

    @Getter
    @EqualsAndHashCode(callSuper = false)
    public static class Signature extends EligibleObject {
        List coordinates;
    }

    @Getter
    @EqualsAndHashCode(callSuper = false)
    public static class Coordinate extends EligibleObject {
        Integer lx;
        Integer ly;
        Integer mx;
        Integer my;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy