id; } /** * ID of record * * @param string|null $id * * @return self */ public function setId(?string $id) : self { $this->id = $id; return $this; } /** * ID of zone this record is associated with * * @return string|null */ public function getZoneId() : ?string { return $this->zoneId; } /** * ID of zone this record is associated with * * @param string|null $zoneId * * @return self */ public function setZoneId(?string $zoneId) : self { $this->zoneId = $zoneId; return $this; } /** * Type of the record * * @return string|null */ public function getType() : ?string { return $this->type; } /** * Type of the record * * @param string|null $type * * @return self */ public function setType(?string $type) : self { $this->type = $type; return $this; } /** * Name of record * * @return string|null */ public function getName() : ?string { return $this->name; } /** * Name of record * * @param string|null $name * * @return self */ public function setName(?string $name) : self { $this->name = $name; return $this; } /** * Value of record (e.g. 127.0.0.1, 1.1.1.1) * * @return string|null */ public function getValue() : ?string { return $this->value; } /** * Value of record (e.g. 127.0.0.1, 1.1.1.1) * * @param string|null $value * * @return self */ public function setValue(?string $value) : self { $this->value = $value; return $this; } /** * TTL of record * * @return int|null */ public function getTtl() : ?int { return $this->ttl; } /** * TTL of record * * @param int|null $ttl * * @return self */ public function setTtl(?int $ttl) : self { $this->ttl = $ttl; return $this; } }