123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- export default class Chileautos {
- private _year: number;
- private _maker: string;
- private _model: string;
- private _version: string;
- private _color: string;
- private _price: number;
- private _title: string;
- private _description: string;
- private _plate: string;
- private _mileage: number;
- private _gearbox: string;
- private _engine: string;
- private _fuel: string;
- private _imageUrl: string;
- private _code: string;
- private _url: string;
- private _region: string;
- private _city: string;
- private _sellerType: string;
- private _sellerName: string;
- private _publicationCreationDate: Date;
- private _publicationUpdateDate: Date;
- private _publicationCreatedAt: Date;
- get year(): number {
- return this._year;
- }
- set year(value: number) {
- this._year = value;
- }
- get maker(): string {
- return this._maker;
- }
- set maker(value: string) {
- this._maker = value;
- }
- get model(): string {
- return this._model;
- }
- set model(value: string) {
- this._model = value;
- }
- get version(): string {
- return this._version;
- }
- set version(value: string) {
- this._version = value;
- }
- get color(): string {
- return this._color;
- }
- set color(value: string) {
- this._color = value;
- }
- get price(): number {
- return this._price;
- }
- set price(value: number) {
- this._price = value;
- }
- get title(): string {
- return this._title;
- }
- set title(value: string) {
- this._title = value;
- }
- get description(): string {
- return this._description;
- }
- set description(value: string) {
- this._description = value;
- }
- get plate(): string {
- return this._plate;
- }
- set plate(value: string) {
- this._plate = value;
- }
- get mileage(): number {
- return this._mileage;
- }
- set mileage(value: number) {
- this._mileage = value;
- }
- get gearbox(): string {
- return this._gearbox;
- }
- set gearbox(value: string) {
- this._gearbox = value;
- }
- get engine(): string {
- return this._engine;
- }
- set engine(value: string) {
- this._engine = value;
- }
- get fuel(): string {
- return this._fuel;
- }
- set fuel(value: string) {
- this._fuel = value;
- }
- get imageUrl(): string {
- return this._imageUrl;
- }
- set imageUrl(value: string) {
- this._imageUrl = value;
- }
- get code(): string {
- return this._code;
- }
- set code(value: string) {
- this._code = value;
- }
- get url(): string {
- return this._url;
- }
- set url(value: string) {
- this._url = value;
- }
- get region(): string {
- return this._region;
- }
- set region(value: string) {
- this._region = value;
- }
- get city(): string {
- return this._city;
- }
- set city(value: string) {
- this._city = value;
- }
- get sellerType(): string {
- return this._sellerType;
- }
- set sellerType(value: string) {
- this._sellerType = value;
- }
- get sellerName(): string {
- return this._sellerName;
- }
- set sellerName(value: string) {
- this._sellerName = value;
- }
- get publicationCreationDate(): Date {
- return this._publicationCreationDate;
- }
- set publicationCreationDate(value: Date) {
- this._publicationCreationDate = value;
- }
- get publicationUpdateDate(): Date {
- return this._publicationUpdateDate;
- }
- set publicationUpdateDate(value: Date) {
- this._publicationUpdateDate = value;
- }
- get publicationCreatedAt(): Date {
- return this._publicationCreatedAt;
- }
- set publicationCreatedAt(value: Date) {
- this._publicationCreatedAt = value;
- }
- }
|