/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * All form data belongs to a form group. Access to the group is managed via the ACL of the group. * @export * @interface FormGroup */ export interface FormGroup { /** * Unique identifier provided by the system. * @type {string} * @memberof FormGroup */ groupId?: string; /** * Unique name for the group provided by the caller. * @type {string} * @memberof FormGroup */ name?: string; /** * Id of the user that created this group * @type {string} * @memberof FormGroup */ createdBy?: string; /** * The date this object was originally created. * @type {string} * @memberof FormGroup */ createdOn?: string; } /** * Check if a given object implements the FormGroup interface. */ export declare function instanceOfFormGroup(value: object): value is FormGroup; export declare function FormGroupFromJSON(json: any): FormGroup; export declare function FormGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormGroup; export declare function FormGroupToJSON(json: any): FormGroup; export declare function FormGroupToJSONTyped(value?: FormGroup | null, ignoreDiscriminator?: boolean): any;