15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
|
|
export type ActivationData = {
|
|
dueDate: string, // isodate
|
|
filter?: {} // no se si hace falta
|
|
identifier: {
|
|
identifiers: string[]
|
|
identifierType: "IMSI" | "MSISDN" | "REFERENCE" | "ICCID" | "IMEI"
|
|
}
|
|
}
|
|
|
|
export type ResponseError = {
|
|
error: string,
|
|
detail: Object[]
|
|
}
|