Ontdek meer
Over deze vacature
Goedenavond 👋Hoe kan ik u helpen?
Assistent Starter Declarant – Amsterdam
Zoek jij een nieuwe loopbaan als startende assistent declarant? Wil je de basisopleiding volgen en ben je reeds begonnen? info@declaranten.nl of 06-81686869
40 p.w.
Starter Declarant (geen ervaring, alleen diploma)
Heb je vragen?Stuur gerust een e-mail naar:
Interesse in een gesprek of meer informatie, per email, persoonlijk of telefonisch? Neem contact met ons op: of .
2026 © All rights reserved all rights Declaranten
6.2 ms 1.501 MB )
Database (4 total Queries, 4 of them unique across 1 Connection)
=> (41) "Assistent Starter Declarant – Amsterdam"
=> (10163) "
(69) "Vacature Starter Declarant Amsterdam. info@declaranten.nl 06-81686869"
=> (156) "Zoek jij een nieuwe loopbaan als startende assistent declarant? Wil je de ba...
Zoek jij een nieuwe loopbaan als startende assistent declarant? Wil je de basisopleiding volgen en ben je reeds begonnen? info@declaranten.nl of 06-81686869
=> (172) "Declaranten, customs, declarant, customs specialist, starter, assistent, jun...
Declaranten, customs, declarant, customs specialist, starter, assistent, junior, douane, import, export, supply chain, vacatures, jobs, baan, banen, solliciteren, amsterdam
=> (41) "Assistent Starter Declarant – Amsterdam"
=> (10163) "
(69) "Vacature Starter Declarant Amsterdam. info@declaranten.nl 06-81686869"
=> (156) "Zoek jij een nieuwe loopbaan als startende assistent declarant? Wil je de ba...
Zoek jij een nieuwe loopbaan als startende assistent declarant? Wil je de basisopleiding volgen en ben je reeds begonnen? info@declaranten.nl of 06-81686869
=> (172) "Declaranten, customs, declarant, customs specialist, starter, assistent, jun...
Declaranten, customs, declarant, customs specialist, starter, assistent, junior, douane, import, export, supply chain, vacatures, jobs, baan, banen, solliciteren, amsterdam
Allows filling in Entity parameters during construction.new \App\Entities\Vacature(?array $data = null)
/
Allows filling in Entity parameters during construction.
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:114
: Takes an array of key/value pairs and sets them as class properties, using an...
/
Takes an array of key/value pairs and sets them as class
properties, using any setCamelCasedProperty() methods
that may or may not exist.
@param array $data
@return $this
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:130
toArray(bool $onlyChanged = false, bool $cast = true, bool $recursive = false): General method that will return all public and protected values of this entit...$value->toArray(bool $onlyChanged = false, bool $cast = true, bool $recursive = false)
/
General method that will return all public and protected values
of this entity as an array. All values are accessed through the
get() magic method so will have any casts, etc applied to them.
@param bool $onlyChanged If true, only return values that have changed since object creation
@param bool $cast If true, properties will be casted.
@param bool $recursive If true, inner entities will be casted as array as well.
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:152
toRawArray(bool $onlyChanged = false, bool $recursive = false): Returns the raw values of the current attributes.$value->toRawArray(bool $onlyChanged = false, bool $recursive = false)
/
Returns the raw values of the current attributes.
@param bool $onlyChanged If true, only return values that have changed since object creation
@param bool $recursive If true, inner entities will be casted as array as well.
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:194
: Ensures our "original" values match the current values.
/
Ensures our "original" values match the current values.
@return $this
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:238
: Checks a property to see if it has changed since the entity was created. Or, ...
/
Checks a property to see if it has changed since the entity
was created. Or, without a parameter, checks if any
properties have changed.
@param string $key
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:252
: Set raw data array without any mutations
/
Set raw data array without any mutations
@return $this
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:277
/
Support for jsonencode()
@return array
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:395
: Change the value of the private $cast property
/
Change the value of the private $cast property
@return bool Entity
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:405
set(string $key, $value = null): Magic method to all protected/private class properties to be easily set, eith...
/
Magic method to all protected/private class properties to be
easily set, either through a direct access or a
setCamelCasedProperty() method.
Examples:
$this->myproperty = $p;
$this->setMyProperty() = $p;
@param mixed null $value
@throws Exception
@return $this
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:431
: Magic method to allow retrieval of protected and private class properties eit...
/
Magic method to allow retrieval of protected and private class properties
either by their name, or through a getCamelCasedProperty() method.
Examples:
$p = $this->myproperty
$p = $this->getMyProperty()
@throws Exception
@return mixed
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:474
: Returns true if a property exists names $key, or a getter method exists named...
/
Returns true if a property exists names $key, or a getter method
exists named like for get().
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:511
: Unsets an attribute property.
/
Unsets an attribute property.
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:531
: Checks the datamap to see if this property name is being mapped, and returns ...
/
Checks the datamap to see if this property name is being mapped,
and returns the db column name, if any, or the original property name.
@return mixed string
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:292
: Converts the given string timestamp DateTime Time instance into the "CodeIgni...
/
Converts the given string timestamp DateTime Time instance
into the "CodeIgniter\I18n\Time" object.
@param mixed $value
@throws Exception
@return mixed Time
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:315
castAs($value, string $attribute, string $method = 'get'): Provides the ability to cast an item as a specific data type. Add ? at the be...
/
Provides the ability to cast an item as a specific data type.
Add ? at the beginning of $type (i.e. ?string) to get NULL
instead of casting $value if $value null
@param mixed $value Attribute value
@param string $attribute Attribute name
@param string $method Allowed to "get" and "set"
@throws CastException
@return mixed
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:333
: Whether this key is mapped db column name?
/
Whether this key is mapped db column name?
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:545
: Whether this key has mapped property?
/
Whether this key has mapped property?
/
Inherited from CodeIgniter\Entity\Entity
Defined in .../Entity/Entity.php:560
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
"Chromium";v="135", "NotA Brand";v="8", "Google Chrome";v="135"
Response ( 200 - OK )