userId = $userId;
$this->appId = $appId;
$this->configKey = $configKey;
$this->configValue = $configValue;
}
/**
* @since 25.0.0
*/
public function getUserId(): string {
return $this->userId;
}
/**
* @since 25.0.0
*/
public function getAppId(): string {
return $this->appId;
}
/**
* @since 25.0.0
*/
public function getConfigKey(): string {
return $this->configKey;
}
/**
* @since 25.0.0
*/
public function getConfigValue(): string {
return $this->configValue;
}
/**
* @since 25.0.0
*/
public function isValid(): bool {
return $this->valid;
}
/**
* @since 25.0.0
*/
public function setValid(bool $valid): void {
$this->valid = $valid;
}
}
spamd-0.9
blob: e86d8ae790fc1b20b237af98582fbe67031ab1ca (
plain)