@selfcommunity/api-services
Version:
Client api for SelfCommunity.
26 lines (25 loc) • 443 B
TypeScript
/**
* ContactUsRequestParams interface
*/
export interface ContactUsRequestParams {
/**
* name field for the account
*/
name?: string;
/**
* Surname field for the account
*/
surname?: string;
/**
* Email field for the account
*/
email?: string;
/**
* Contact request message text
*/
message?: string;
/**
* Any other properties
*/
[]: any;
}