/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface AtsActivity
 */
export interface AtsActivity {
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof AtsActivity
     */
    readonly id?: string;
    /**
     * When custom mappings are configured on the resource, the result is included here.
     * @type {object}
     * @memberof AtsActivity
     */
    readonly custom_mappings?: object | null;
    /**
     * The user who last updated the object.
     * @type {string}
     * @memberof AtsActivity
     */
    readonly updated_by?: string | null;
    /**
     * The user who created the object.
     * @type {string}
     * @memberof AtsActivity
     */
    readonly created_by?: string | null;
    /**
     * The date and time when the object was last updated.
     * @type {Date}
     * @memberof AtsActivity
     */
    readonly updated_at?: Date | null;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof AtsActivity
     */
    readonly created_at?: Date | null;
}
export declare function AtsActivityFromJSON(json: any): AtsActivity;
export declare function AtsActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean): AtsActivity;
export declare function AtsActivityToJSON(value?: AtsActivity | null): any;
