/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetSubscriptionResponse } from './getSubscriptionResponse'; /** Response object for getting a period */ export interface GetPeriodResponse { startAt?: string | null; endAt?: string | null; id?: string | null; billingAt?: string | null; subscription?: GetSubscriptionResponse | null; status?: string | null; duration?: number | null; createdAt?: string | null; updatedAt?: string | null; cycle?: number | null; } export declare const getPeriodResponseSchema: Schema;