/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetTransactionResponse } from './getTransactionResponse'; /** Response object for getting a safety pay transaction */ export interface GetSafetyPayTransactionResponse extends GetTransactionResponse { /** Payment url */ url?: string | null; /** Transaction identifier on bank */ bankTid?: string | null; /** Payment date */ paidAt?: string | null; /** Paid amount */ paidAmount?: number | null; } export declare const getSafetyPayTransactionResponseSchema: Schema;