21 lines
313 B
TypeScript
21 lines
313 B
TypeScript
|
|
import { User } from "./User"
|
||
|
|
|
||
|
|
export type SimCard = {
|
||
|
|
iccid: string,
|
||
|
|
imei: string,
|
||
|
|
|
||
|
|
/* Pedido de shopify */
|
||
|
|
orderdId?: string, // Pasar a tipo
|
||
|
|
|
||
|
|
/* Subscripcion de shopify */
|
||
|
|
subscriptionId?: string, // Pasar a tipo
|
||
|
|
|
||
|
|
user?: User
|
||
|
|
|
||
|
|
createdAt?: Date,
|
||
|
|
updatedAt?: Date,
|
||
|
|
|
||
|
|
codigoOrigen?: string,
|
||
|
|
}
|
||
|
|
|