@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
60 lines (59 loc) • 1.49 kB
TypeScript
import { Amounts } from "./amounts";
import { Donation } from "./donation";
export declare class DonationCampaign {
"amounts"?: Amounts | null;
/**
* The URL for the banner of the nonprofit or campaign.
*/
"bannerUrl"?: string;
/**
* The name of the donation campaign..
*/
"campaignName"?: string;
/**
* The cause of the nonprofit.
*/
"causeName"?: string;
"donation"?: Donation | null;
/**
* The unique campaign ID of the donation campaign.
*/
"id"?: string;
/**
* The URL for the logo of the nonprofit.
*/
"logoUrl"?: string;
/**
* The description of the nonprofit.
*/
"nonprofitDescription"?: string;
/**
* The name of the nonprofit organization that receives the donation.
*/
"nonprofitName"?: string;
/**
* The website URL of the nonprofit.
*/
"nonprofitUrl"?: string;
/**
* The URL of the terms and conditions page of the nonprofit and the campaign.
*/
"termsAndConditionsUrl"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}