/**
 * BoldSign API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

import { RequestFile } from './models';
import { PhoneNumber } from './phoneNumber';

export class RemoveAuthentication {
    'emailId'?: string | null;
    'zOrder'?: number | null;
    'phoneNumber'?: PhoneNumber;
    'onBehalfOf'?: string | null;

    static discriminator: string | undefined = undefined;

    static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
        {
            "name": "emailId",
            "baseName": "emailId",
            "type": "string"
        },
        {
            "name": "zOrder",
            "baseName": "zOrder",
            "type": "number"
        },
        {
            "name": "phoneNumber",
            "baseName": "phoneNumber",
            "type": "PhoneNumber"
        },
        {
            "name": "onBehalfOf",
            "baseName": "onBehalfOf",
            "type": "string"
        }    ];

    static getAttributeTypeMap() {
        return RemoveAuthentication.attributeTypeMap;
    }
}

