baasic-sdk-javascript
Version:
JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).
19 lines (18 loc) • 500 B
TypeScript
import { IModel } from '../../../common/contracts';
import { ICountry, ICountryState } from './';
export interface IUserAddress extends IModel {
address1?: string;
address2?: string;
addressTypeId?: string;
city?: string;
country?: ICountry;
countryId?: string;
countryState?: ICountryState;
faxNumber?: string;
json?: string;
phoneNumber?: string;
state?: string;
stateId?: string;
userId?: string;
zipPostalCode?: string;
}