2021-01-15 23:10:37 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
2021-02-10 22:04:05 +00:00
|
|
|
import { IDType, HoudiniObject } from '../../common';
|
2021-01-15 23:10:37 +00:00
|
|
|
import Nonprofit from '../';
|
|
|
|
|
|
|
|
export default interface Campaign extends HoudiniObject {
|
|
|
|
name: string;
|
2021-02-10 22:04:05 +00:00
|
|
|
nonprofit: IDType | Nonprofit;
|
2021-01-15 23:10:37 +00:00
|
|
|
object: "campaign";
|
|
|
|
}
|
|
|
|
|
|
|
|
export * from './CampaignGiftOption';
|
2021-02-08 21:22:35 +00:00
|
|
|
export * from './CampaignGiftPurchase';
|
|
|
|
export * from './CampaignGift';
|