/** * Copyright (c) 2023 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { Model } from '@nuinalp/api-core/browser'; import { IPlanChangeResponse } from '../types'; export default class Plans extends Model { protected static adapter: any; id: string; label: string; description: string; lookups: string; is_unlimited: boolean; bill_cycle: 'month' | 'year'; id_country: string; value: number; type: 'prepaid' | 'postpaid'; slug: string; created_at: Date; updated_at: Date; deleted_at: Date; static change(id: string): Promise; }