/* tslint:disable */
/* eslint-disable */
/**
* Constant Contact API v3
* Swagger build version 3.0.2475
*
* The version of the OpenAPI document: 1.0.116
* Contact: webservices@constantcontact.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Specify client account user\'s details. All fields are required.
* @export
* @interface SSOUser
*/
export interface SSOUser {
/**
* The client account user\'s first name.
* @type {string}
* @memberof SSOUser
*/
'first_name': string;
/**
* The client account user\'s last name.
* @type {string}
* @memberof SSOUser
*/
'last_name': string;
/**
* The role (account_manager or campaign_creator) to assign the client account user.
* @type {string}
* @memberof SSOUser
*/
'role_name': string;
/**
* The unique email address to associate with the new client account user.
* @type {string}
* @memberof SSOUser
*/
'contact_email': string;
/**
* The login name to associate with the new client account user.
* @type {string}
* @memberof SSOUser
*/
'login_name': string;
/**
* The unique ID used to identify the client account user to the external authenticator.
* @type {string}
* @memberof SSOUser
*/
'external_id': string;
/**
* The unique name used to identify the external provider used to authenticate the client account user. For a list of external providers, contact the Constant Contact Partner Team.
* @type {string}
* @memberof SSOUser
*/
'external_provider': string;
}