/** * 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. */ /** * The state of a verification submission * @export * @interface VerificationState */ export interface VerificationState { /** * The date and time this object was created * @type {string} * @memberof VerificationState */ createdOn?: string; /** * The principal ID of the user who created this object * @type {string} * @memberof VerificationState */ createdBy?: string; /** * The enumeration of possible verification states. * @type {string} * @memberof VerificationState */ state?: VerificationStateStateEnum; /** * The reason for putting the verification submission in this state. * @type {string} * @memberof VerificationState */ reason?: string; /** * Additional notes that can be set by the ACT team and that is not exposed to the end user. * @type {string} * @memberof VerificationState */ notes?: string; } /** * @export */ export declare const VerificationStateStateEnum: { readonly SUBMITTED: "SUBMITTED"; readonly APPROVED: "APPROVED"; readonly REJECTED: "REJECTED"; readonly SUSPENDED: "SUSPENDED"; }; export type VerificationStateStateEnum = typeof VerificationStateStateEnum[keyof typeof VerificationStateStateEnum]; /** * Check if a given object implements the VerificationState interface. */ export declare function instanceOfVerificationState(value: object): value is VerificationState; export declare function VerificationStateFromJSON(json: any): VerificationState; export declare function VerificationStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationState; export declare function VerificationStateToJSON(json: any): VerificationState; export declare function VerificationStateToJSONTyped(value?: VerificationState | null, ignoreDiscriminator?: boolean): any;