Home > @vsf-enterprise/sap-commerce-webservices-sdk > AddressApiAxiosParamCreator
AddressApiAxiosParamCreator variable
AddressApi - axios parameter creator
Signature:
AddressApiAxiosParamCreator: (configuration?: Configuration) => {
createAddress: (baseSiteId: string, userId: string, address: Address, fields?: string, options?: any) => Promise<RequestArgs>;
getAddress: (addressId: string, baseSiteId: string, userId: string, fields?: string, options?: any) => Promise<RequestArgs>;
getAddresses: (baseSiteId: string, userId: string, fields?: string, options?: any) => Promise<RequestArgs>;
removeAddress: (addressId: string, baseSiteId: string, userId: string, options?: any) => Promise<RequestArgs>;
replaceAddress: (addressId: string, baseSiteId: string, userId: string, address: Address, options?: any) => Promise<RequestArgs>;
updateAddress: (addressId: string, baseSiteId: string, userId: string, address: Address, options?: any) => Promise<RequestArgs>;
validateAddress: (baseSiteId: string, userId: string, address: Address, fields?: string, options?: any) => Promise<RequestArgs>;
}