I have a class named 'Variables' with all parametres that I want to store the data of the table. Please someone know how to save these content to my variables?
Table that I want to save data
class Variables{
constructor(image, pantalla, tipo_etiquetado, tipo_llamada, page_name, page_section, page_category, page_subcategory1, event_category, event_action, event_label, product_unit_price){
this.image = image;
this.pantalla = pantalla;
this.tipo_etiquetado = tipo_etiquetado;
this.tipo_llamada = tipo_llamada;
this.page_name = page_name;
this.page_section = page_section;
this.page_category = page_category;
this.page_subcategory1 = page_subcategory1;
this.event_category = event_category;
this.event_action = event_action;
this.event_label = event_label;
this.product_unit_price = product_unit_price;
}
get image(){}
get pantalla(){}
get tipo_etiquetado(){}
get tipo_llamada(){}
get page_name(){}
get page_section(){}
get page_category(){}
get page_subcategory1(){}
get event_category(){}
get event_action(){}
get event_label(){}
get product_unit_price(){}
}