File

feature-libs/user/profile/root/model/user-profile.model.ts

Index

Properties

Properties

firstName
firstName: string
Type : string
Optional
lastName
lastName: string
Type : string
Optional
password
password: string
Type : string
Optional
titleCode
titleCode: string
Type : string
Optional
uid
uid: string
Type : string
Optional
import { Address, Currency, Language } from '@spartacus/core';

declare module '@spartacus/user/account/root' {
  export interface User {
    currency?: Currency;
    customerId?: string;
    deactivationDate?: Date;
    defaultAddress?: Address;
    displayUid?: string;
    firstName?: string;
    language?: Language;
    lastName?: string;
    name?: string;
    title?: string;
    titleCode?: string;
    uid?: string;
    roles?: string[];
  }
}

export interface Title {
  code?: string;
  name?: string;
}

export interface UserSignUp {
  firstName?: string;
  lastName?: string;
  password?: string;
  titleCode?: string;
  uid?: string;
}

result-matching ""

    No results matching ""