addr = new GSDAddress(); $this->createdAt = new \DateTime('now'); } /** * Get customer number * * @return string * * @since 1.0.0 */ public function getNumber() : string { return $this->number; } /** * Get information text * * @return string * * @since 1.0.0 */ public function getInfo() : string { return $this->info; } /** * Get credit limit * * @return float * * @since 1.0.0 */ public function getCreditLimit() : float { return $this->creditlimit; } /** * Get EGUStId * * @return string * * @since 1.0.0 */ public function getEGUstId() : string { return $this->egustid; } /** * Get VAT Id * * @return string * * @since 1.0.0 */ public function getTaxId() : string { return $this->taxid; } /** * Get BIC * * @return string * * @since 1.0.0 */ public function getBIC() : string { return $this->bic; } /** * Get IBAN * * @return string * * @since 1.0.0 */ public function getIban() : string { return $this->iban; } /** * Get main address * * @return GSDAddress * * @since 1.0.0 */ public function getAddress() : GSDAddress { return $this->addr; } /** * Get deivery status * * @return int * * @since 1.0.0 */ public function getDeliveryStatus() : int { return $this->deliveryStatus; } /** * Get saes rep * * @return int * * @since 1.0.0 */ public function getSalesRep() : int { return $this->salesRep; } }