| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/wpmu-dev-seo/includes/assets/js/es6/ |
Upload File : |
export default class Term {
constructor() {
}
set_id(id) {
this.id = id;
return this;
}
get_id() {
return this.id;
}
set_title(title) {
this.title = title;
return this;
}
get_title() {
return this.title;
}
set_slug(slug) {
this.slug = slug;
return this;
}
get_slug() {
return this.slug;
}
set_description(description) {
this.description = description;
return this;
}
get_description() {
return this.description;
}
set_taxonomy(taxonomy) {
this.taxonomy = taxonomy;
return this;
}
get_taxonomy() {
return this.taxonomy;
}
set_permalink(permalink) {
this.permalink = permalink;
return this;
}
get_permalink() {
return this.permalink;
}
};