bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
11 lines (10 loc) • 311 B
TypeScript
import { ValidatedResponse } from '../../errors/models/ValidatedResponse';
import { PlanResponse } from './Plan';
/**
* Contains a list of subscription billing plans
*/
export interface PlanListResponse extends ValidatedResponse {
totalResults: number;
lastPage: boolean;
plans: PlanResponse[];
}