Repository URL to install this package:
|
Version:
1.3.1 ▾
|
/**
* @see AccountLink
* @link https://jira.skava.net/confluence/display/SKC/SE-3205+-+Ability+to+link+a+guest+order+to+an+existing+account
*
* @see UserType
* @link https://jira.skava.net/confluence/display/PLATA/User+Properties
*
* @namespace user
*/
import {
FlagList,
} from '../index.base'
import {
Identifier,
} from './generic'
interface UserInfo {
firstname: String
lastname: String
email: String
username: String
country: String
city: String
address1: String
phonenumber: String
addressid: String
zipcode: String
state: String
application: String
addresstype: String
flags: FlagList,
/**
* @lends id
*/
userid: Identifier
// enum
type: String
}
export {
UserInfo,
}