/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { APIUserSubscription } from './APIUserSubscription';
/**
 *
 * @export
 * @interface GetSubscriptionsAPIResponse
 */
export interface GetSubscriptionsAPIResponse {
    /**
     *
     * @type {string}
     * @memberof GetSubscriptionsAPIResponse
     */
    reason?: string;
    /**
     *
     * @type {string}
     * @memberof GetSubscriptionsAPIResponse
     */
    code?: string;
    /**
     *
     * @type {Array<APIUserSubscription>}
     * @memberof GetSubscriptionsAPIResponse
     */
    subscriptions?: Array<APIUserSubscription>;
    /**
     *
     * @type {string}
     * @memberof GetSubscriptionsAPIResponse
     */
    status: string;
}
/**
 * Check if a given object implements the GetSubscriptionsAPIResponse interface.
 */
export declare function instanceOfGetSubscriptionsAPIResponse(value: object): value is GetSubscriptionsAPIResponse;
export declare function GetSubscriptionsAPIResponseFromJSON(json: any): GetSubscriptionsAPIResponse;
export declare function GetSubscriptionsAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSubscriptionsAPIResponse;
export declare function GetSubscriptionsAPIResponseToJSON(json: any): GetSubscriptionsAPIResponse;
export declare function GetSubscriptionsAPIResponseToJSONTyped(value?: GetSubscriptionsAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetSubscriptionsAPIResponse.d.ts.map