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