@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
26 lines (25 loc) • 419 B
TypeScript
/**
* Interface SCContactUsRequestType
*/
export interface SCContactUsRequestType {
/**
* Id of the request
*/
id?: number;
/**
* Message of the request
*/
message?: string;
/**
* Created at
*/
created_at?: Date | string;
/**
* Updated at
*/
updated_at?: Date | string | null;
/**
* Any other properties
*/
[]: any;
}