IRIS TINSubmittedTypeCdType

IRIS > IRIS XML

Under Development
as of April 11, 2023

Tree


+- root: TINSubmittedTypeCdType


Flattened

TINSubmittedTypeCdType

Java Code


package modelsiris;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for TINSubmittedTypeCdType.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * <p>
 * <pre>
 * <simpleType name="TINSubmittedTypeCdType">
 *   <restriction base="{urn:us:gov:treasury:irs:ir}TextType">
 *     <enumeration value="INDIVIDUAL_TIN"/>
 *     <enumeration value="BUSINESS_TIN"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * </pre>
 * 
 */
@XmlType(name = "TINSubmittedTypeCdType", namespace = "urn:us:gov:treasury:irs:ir")
@XmlEnum
public enum TINSubmittedTypeCdType {


    /**
     * Individual TIN
     * 
     */
    INDIVIDUAL_TIN,

    /**
     * Business TIN
     * 
     */
    BUSINESS_TIN,

    /**
     * Unknown Type
     * 
     */
    UNKNOWN;

    public String value() {
        return name();
    }

    public static TINSubmittedTypeCdType fromValue(String v) {
        return valueOf(v);
    }

}

© Copyright 2023. All Rights Reserved.