UNPKG

@paciolan/cybersource-sdk

Version:
38 lines (37 loc) 1.36 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Ptsv2paymentsHostedPaymentInformationUserAgent } from './ptsv2payments-hosted-payment-information-user-agent'; /** * * @export * @interface Ptsv2paymentsHostedPaymentInformation */ export interface Ptsv2paymentsHostedPaymentInformation { /** * The title of the hosted payment page, displayed in the browser's tab. If not set, defaults to the title set in the merchant configuration. * @type {string} * @memberof Ptsv2paymentsHostedPaymentInformation */ hostName?: string; /** * URL of the merchant's logo to be displayed in Klarna's hosted payment page. If not set, defaults to the logo set in the merchant configuration. * @type {string} * @memberof Ptsv2paymentsHostedPaymentInformation */ ipAddress?: string; /** * * @type {Ptsv2paymentsHostedPaymentInformationUserAgent} * @memberof Ptsv2paymentsHostedPaymentInformation */ userAgent?: Ptsv2paymentsHostedPaymentInformationUserAgent; }