/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ /** * * @export * @interface PaypalResponse */ export interface PaypalResponse { /** * * @type {string} * @memberof PaypalResponse */ redirectUrl: string; } /** * Check if a given object implements the PaypalResponse interface. */ export declare function instanceOfPaypalResponse(value: object): value is PaypalResponse; export declare function PaypalResponseFromJSON(json: any): PaypalResponse; export declare function PaypalResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaypalResponse; export declare function PaypalResponseToJSON(value?: PaypalResponse | null): any;