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-01-15 17:10:37 -06:00
|
|
|
import Nonprofit from '../';
|
|
|
|
|
|
|
|
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';
|