import { ITradeIdeaImage, ITradeIdeaStrategyOrdersType } from '..'

export interface ICreateIdeaStrategyRequest {
	// this one is the only one that must be there
	reference: string // all NFT IDEAs with the same of this reference AND FROM SAME CREATOR are parts of one "STRATEGY CHAIN".
	name?: string // if want to set or change change name
	description?: string // if want to set or change description
	image?: ITradeIdeaImage // if want to set or change image
	externalLink?: string // if want to set or change externalLink
	// raw?: any
	ordersType?: ITradeIdeaStrategyOrdersType // Defaults to STANDARD. Cannot change once set.
}
