
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck 
/*
 * This file exports the `master_time_slot_days` model and its related types.
 *
 * 🟢 You can import this file directly.
 */
import type * as runtime from "@prisma/client/runtime/library"
import type * as $Enums from "../enums"
import type * as Prisma from "../internal/prismaNamespace"

/**
 * Model master_time_slot_days
 * 
 */
export type master_time_slot_daysModel = runtime.Types.Result.DefaultSelection<Prisma.$master_time_slot_daysPayload>

export type AggregateMaster_time_slot_days = {
  _count: Master_time_slot_daysCountAggregateOutputType | null
  _avg: Master_time_slot_daysAvgAggregateOutputType | null
  _sum: Master_time_slot_daysSumAggregateOutputType | null
  _min: Master_time_slot_daysMinAggregateOutputType | null
  _max: Master_time_slot_daysMaxAggregateOutputType | null
}

export type Master_time_slot_daysAvgAggregateOutputType = {
  id: number | null
  master_id: number | null
  weekday: number | null
}

export type Master_time_slot_daysSumAggregateOutputType = {
  id: number | null
  master_id: number | null
  weekday: number | null
}

export type Master_time_slot_daysMinAggregateOutputType = {
  id: number | null
  master_id: number | null
  weekday: number | null
  is_closed: boolean | null
  active_status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Master_time_slot_daysMaxAggregateOutputType = {
  id: number | null
  master_id: number | null
  weekday: number | null
  is_closed: boolean | null
  active_status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Master_time_slot_daysCountAggregateOutputType = {
  id: number
  master_id: number
  weekday: number
  is_closed: number
  active_status: number
  created_at: number
  updated_at: number
  _all: number
}


export type Master_time_slot_daysAvgAggregateInputType = {
  id?: true
  master_id?: true
  weekday?: true
}

export type Master_time_slot_daysSumAggregateInputType = {
  id?: true
  master_id?: true
  weekday?: true
}

export type Master_time_slot_daysMinAggregateInputType = {
  id?: true
  master_id?: true
  weekday?: true
  is_closed?: true
  active_status?: true
  created_at?: true
  updated_at?: true
}

export type Master_time_slot_daysMaxAggregateInputType = {
  id?: true
  master_id?: true
  weekday?: true
  is_closed?: true
  active_status?: true
  created_at?: true
  updated_at?: true
}

export type Master_time_slot_daysCountAggregateInputType = {
  id?: true
  master_id?: true
  weekday?: true
  is_closed?: true
  active_status?: true
  created_at?: true
  updated_at?: true
  _all?: true
}

export type Master_time_slot_daysAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which master_time_slot_days to aggregate.
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of master_time_slot_days to fetch.
   */
  orderBy?: Prisma.master_time_slot_daysOrderByWithRelationInput | Prisma.master_time_slot_daysOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.master_time_slot_daysWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` master_time_slot_days from the position of the cursor.
   */
  take?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Skip the first `n` master_time_slot_days.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Count returned master_time_slot_days
  **/
  _count?: true | Master_time_slot_daysCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to average
  **/
  _avg?: Master_time_slot_daysAvgAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to sum
  **/
  _sum?: Master_time_slot_daysSumAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: Master_time_slot_daysMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: Master_time_slot_daysMaxAggregateInputType
}

export type GetMaster_time_slot_daysAggregateType<T extends Master_time_slot_daysAggregateArgs> = {
      [P in keyof T & keyof AggregateMaster_time_slot_days]: P extends '_count' | 'count'
    ? T[P] extends true
      ? number
      : Prisma.GetScalarType<T[P], AggregateMaster_time_slot_days[P]>
    : Prisma.GetScalarType<T[P], AggregateMaster_time_slot_days[P]>
}




export type master_time_slot_daysGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.master_time_slot_daysWhereInput
  orderBy?: Prisma.master_time_slot_daysOrderByWithAggregationInput | Prisma.master_time_slot_daysOrderByWithAggregationInput[]
  by: Prisma.Master_time_slot_daysScalarFieldEnum[] | Prisma.Master_time_slot_daysScalarFieldEnum
  having?: Prisma.master_time_slot_daysScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: Master_time_slot_daysCountAggregateInputType | true
  _avg?: Master_time_slot_daysAvgAggregateInputType
  _sum?: Master_time_slot_daysSumAggregateInputType
  _min?: Master_time_slot_daysMinAggregateInputType
  _max?: Master_time_slot_daysMaxAggregateInputType
}

export type Master_time_slot_daysGroupByOutputType = {
  id: number
  master_id: number
  weekday: number
  is_closed: boolean | null
  active_status: boolean | null
  created_at: Date | null
  updated_at: Date | null
  _count: Master_time_slot_daysCountAggregateOutputType | null
  _avg: Master_time_slot_daysAvgAggregateOutputType | null
  _sum: Master_time_slot_daysSumAggregateOutputType | null
  _min: Master_time_slot_daysMinAggregateOutputType | null
  _max: Master_time_slot_daysMaxAggregateOutputType | null
}

type GetMaster_time_slot_daysGroupByPayload<T extends master_time_slot_daysGroupByArgs> = Prisma.PrismaPromise<
  Array<
    Prisma.PickEnumerable<Master_time_slot_daysGroupByOutputType, T['by']> &
      {
        [P in ((keyof T) & (keyof Master_time_slot_daysGroupByOutputType))]: P extends '_count'
          ? T[P] extends boolean
            ? number
            : Prisma.GetScalarType<T[P], Master_time_slot_daysGroupByOutputType[P]>
          : Prisma.GetScalarType<T[P], Master_time_slot_daysGroupByOutputType[P]>
      }
    >
  >



export type master_time_slot_daysWhereInput = {
  AND?: Prisma.master_time_slot_daysWhereInput | Prisma.master_time_slot_daysWhereInput[]
  OR?: Prisma.master_time_slot_daysWhereInput[]
  NOT?: Prisma.master_time_slot_daysWhereInput | Prisma.master_time_slot_daysWhereInput[]
  id?: Prisma.IntFilter<"master_time_slot_days"> | number
  master_id?: Prisma.IntFilter<"master_time_slot_days"> | number
  weekday?: Prisma.IntFilter<"master_time_slot_days"> | number
  is_closed?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  active_status?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
  master_time_slots?: Prisma.XOR<Prisma.Master_time_slotsScalarRelationFilter, Prisma.master_time_slotsWhereInput>
  master_time_slot_sessions?: Prisma.Master_time_slot_sessionsListRelationFilter
}

export type master_time_slot_daysOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
  is_closed?: Prisma.SortOrderInput | Prisma.SortOrder
  active_status?: Prisma.SortOrderInput | Prisma.SortOrder
  created_at?: Prisma.SortOrderInput | Prisma.SortOrder
  updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
  master_time_slots?: Prisma.master_time_slotsOrderByWithRelationInput
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsOrderByRelationAggregateInput
}

export type master_time_slot_daysWhereUniqueInput = Prisma.AtLeast<{
  id?: number
  master_id_weekday?: Prisma.master_time_slot_daysMaster_idWeekdayCompoundUniqueInput
  AND?: Prisma.master_time_slot_daysWhereInput | Prisma.master_time_slot_daysWhereInput[]
  OR?: Prisma.master_time_slot_daysWhereInput[]
  NOT?: Prisma.master_time_slot_daysWhereInput | Prisma.master_time_slot_daysWhereInput[]
  master_id?: Prisma.IntFilter<"master_time_slot_days"> | number
  weekday?: Prisma.IntFilter<"master_time_slot_days"> | number
  is_closed?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  active_status?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
  master_time_slots?: Prisma.XOR<Prisma.Master_time_slotsScalarRelationFilter, Prisma.master_time_slotsWhereInput>
  master_time_slot_sessions?: Prisma.Master_time_slot_sessionsListRelationFilter
}, "id" | "master_id_weekday">

export type master_time_slot_daysOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
  is_closed?: Prisma.SortOrderInput | Prisma.SortOrder
  active_status?: Prisma.SortOrderInput | Prisma.SortOrder
  created_at?: Prisma.SortOrderInput | Prisma.SortOrder
  updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.master_time_slot_daysCountOrderByAggregateInput
  _avg?: Prisma.master_time_slot_daysAvgOrderByAggregateInput
  _max?: Prisma.master_time_slot_daysMaxOrderByAggregateInput
  _min?: Prisma.master_time_slot_daysMinOrderByAggregateInput
  _sum?: Prisma.master_time_slot_daysSumOrderByAggregateInput
}

export type master_time_slot_daysScalarWhereWithAggregatesInput = {
  AND?: Prisma.master_time_slot_daysScalarWhereWithAggregatesInput | Prisma.master_time_slot_daysScalarWhereWithAggregatesInput[]
  OR?: Prisma.master_time_slot_daysScalarWhereWithAggregatesInput[]
  NOT?: Prisma.master_time_slot_daysScalarWhereWithAggregatesInput | Prisma.master_time_slot_daysScalarWhereWithAggregatesInput[]
  id?: Prisma.IntWithAggregatesFilter<"master_time_slot_days"> | number
  master_id?: Prisma.IntWithAggregatesFilter<"master_time_slot_days"> | number
  weekday?: Prisma.IntWithAggregatesFilter<"master_time_slot_days"> | number
  is_closed?: Prisma.BoolNullableWithAggregatesFilter<"master_time_slot_days"> | boolean | null
  active_status?: Prisma.BoolNullableWithAggregatesFilter<"master_time_slot_days"> | boolean | null
  created_at?: Prisma.DateTimeNullableWithAggregatesFilter<"master_time_slot_days"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableWithAggregatesFilter<"master_time_slot_days"> | Date | string | null
}

export type master_time_slot_daysCreateInput = {
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  master_time_slots: Prisma.master_time_slotsCreateNestedOneWithoutMaster_time_slot_daysInput
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsCreateNestedManyWithoutMaster_time_slot_daysInput
}

export type master_time_slot_daysUncheckedCreateInput = {
  id?: number
  master_id: number
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUncheckedCreateNestedManyWithoutMaster_time_slot_daysInput
}

export type master_time_slot_daysUpdateInput = {
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  master_time_slots?: Prisma.master_time_slotsUpdateOneRequiredWithoutMaster_time_slot_daysNestedInput
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUpdateManyWithoutMaster_time_slot_daysNestedInput
}

export type master_time_slot_daysUncheckedUpdateInput = {
  id?: Prisma.IntFieldUpdateOperationsInput | number
  master_id?: Prisma.IntFieldUpdateOperationsInput | number
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUncheckedUpdateManyWithoutMaster_time_slot_daysNestedInput
}

export type master_time_slot_daysCreateManyInput = {
  id?: number
  master_id: number
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type master_time_slot_daysUpdateManyMutationInput = {
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type master_time_slot_daysUncheckedUpdateManyInput = {
  id?: Prisma.IntFieldUpdateOperationsInput | number
  master_id?: Prisma.IntFieldUpdateOperationsInput | number
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type Master_time_slot_daysListRelationFilter = {
  every?: Prisma.master_time_slot_daysWhereInput
  some?: Prisma.master_time_slot_daysWhereInput
  none?: Prisma.master_time_slot_daysWhereInput
}

export type master_time_slot_daysOrderByRelationAggregateInput = {
  _count?: Prisma.SortOrder
}

export type master_time_slot_daysMaster_idWeekdayCompoundUniqueInput = {
  master_id: number
  weekday: number
}

export type master_time_slot_daysCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
  is_closed?: Prisma.SortOrder
  active_status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type master_time_slot_daysAvgOrderByAggregateInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
}

export type master_time_slot_daysMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
  is_closed?: Prisma.SortOrder
  active_status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type master_time_slot_daysMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
  is_closed?: Prisma.SortOrder
  active_status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type master_time_slot_daysSumOrderByAggregateInput = {
  id?: Prisma.SortOrder
  master_id?: Prisma.SortOrder
  weekday?: Prisma.SortOrder
}

export type Master_time_slot_daysScalarRelationFilter = {
  is?: Prisma.master_time_slot_daysWhereInput
  isNot?: Prisma.master_time_slot_daysWhereInput
}

export type master_time_slot_daysCreateNestedManyWithoutMaster_time_slotsInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput> | Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput[] | Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput[]
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput[]
  createMany?: Prisma.master_time_slot_daysCreateManyMaster_time_slotsInputEnvelope
  connect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
}

export type master_time_slot_daysUncheckedCreateNestedManyWithoutMaster_time_slotsInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput> | Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput[] | Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput[]
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput[]
  createMany?: Prisma.master_time_slot_daysCreateManyMaster_time_slotsInputEnvelope
  connect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
}

export type master_time_slot_daysUpdateManyWithoutMaster_time_slotsNestedInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput> | Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput[] | Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput[]
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput[]
  upsert?: Prisma.master_time_slot_daysUpsertWithWhereUniqueWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpsertWithWhereUniqueWithoutMaster_time_slotsInput[]
  createMany?: Prisma.master_time_slot_daysCreateManyMaster_time_slotsInputEnvelope
  set?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  disconnect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  delete?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  connect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  update?: Prisma.master_time_slot_daysUpdateWithWhereUniqueWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpdateWithWhereUniqueWithoutMaster_time_slotsInput[]
  updateMany?: Prisma.master_time_slot_daysUpdateManyWithWhereWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpdateManyWithWhereWithoutMaster_time_slotsInput[]
  deleteMany?: Prisma.master_time_slot_daysScalarWhereInput | Prisma.master_time_slot_daysScalarWhereInput[]
}

export type master_time_slot_daysUncheckedUpdateManyWithoutMaster_time_slotsNestedInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput> | Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput[] | Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput[]
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput[]
  upsert?: Prisma.master_time_slot_daysUpsertWithWhereUniqueWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpsertWithWhereUniqueWithoutMaster_time_slotsInput[]
  createMany?: Prisma.master_time_slot_daysCreateManyMaster_time_slotsInputEnvelope
  set?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  disconnect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  delete?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  connect?: Prisma.master_time_slot_daysWhereUniqueInput | Prisma.master_time_slot_daysWhereUniqueInput[]
  update?: Prisma.master_time_slot_daysUpdateWithWhereUniqueWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpdateWithWhereUniqueWithoutMaster_time_slotsInput[]
  updateMany?: Prisma.master_time_slot_daysUpdateManyWithWhereWithoutMaster_time_slotsInput | Prisma.master_time_slot_daysUpdateManyWithWhereWithoutMaster_time_slotsInput[]
  deleteMany?: Prisma.master_time_slot_daysScalarWhereInput | Prisma.master_time_slot_daysScalarWhereInput[]
}

export type master_time_slot_daysCreateNestedOneWithoutMaster_time_slot_sessionsInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slot_sessionsInput>
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slot_sessionsInput
  connect?: Prisma.master_time_slot_daysWhereUniqueInput
}

export type master_time_slot_daysUpdateOneRequiredWithoutMaster_time_slot_sessionsNestedInput = {
  create?: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slot_sessionsInput>
  connectOrCreate?: Prisma.master_time_slot_daysCreateOrConnectWithoutMaster_time_slot_sessionsInput
  upsert?: Prisma.master_time_slot_daysUpsertWithoutMaster_time_slot_sessionsInput
  connect?: Prisma.master_time_slot_daysWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.master_time_slot_daysUpdateToOneWithWhereWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUpdateWithoutMaster_time_slot_sessionsInput>, Prisma.master_time_slot_daysUncheckedUpdateWithoutMaster_time_slot_sessionsInput>
}

export type master_time_slot_daysCreateWithoutMaster_time_slotsInput = {
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsCreateNestedManyWithoutMaster_time_slot_daysInput
}

export type master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput = {
  id?: number
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUncheckedCreateNestedManyWithoutMaster_time_slot_daysInput
}

export type master_time_slot_daysCreateOrConnectWithoutMaster_time_slotsInput = {
  where: Prisma.master_time_slot_daysWhereUniqueInput
  create: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput>
}

export type master_time_slot_daysCreateManyMaster_time_slotsInputEnvelope = {
  data: Prisma.master_time_slot_daysCreateManyMaster_time_slotsInput | Prisma.master_time_slot_daysCreateManyMaster_time_slotsInput[]
  skipDuplicates?: boolean
}

export type master_time_slot_daysUpsertWithWhereUniqueWithoutMaster_time_slotsInput = {
  where: Prisma.master_time_slot_daysWhereUniqueInput
  update: Prisma.XOR<Prisma.master_time_slot_daysUpdateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedUpdateWithoutMaster_time_slotsInput>
  create: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slotsInput>
}

export type master_time_slot_daysUpdateWithWhereUniqueWithoutMaster_time_slotsInput = {
  where: Prisma.master_time_slot_daysWhereUniqueInput
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateWithoutMaster_time_slotsInput, Prisma.master_time_slot_daysUncheckedUpdateWithoutMaster_time_slotsInput>
}

export type master_time_slot_daysUpdateManyWithWhereWithoutMaster_time_slotsInput = {
  where: Prisma.master_time_slot_daysScalarWhereInput
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateManyMutationInput, Prisma.master_time_slot_daysUncheckedUpdateManyWithoutMaster_time_slotsInput>
}

export type master_time_slot_daysScalarWhereInput = {
  AND?: Prisma.master_time_slot_daysScalarWhereInput | Prisma.master_time_slot_daysScalarWhereInput[]
  OR?: Prisma.master_time_slot_daysScalarWhereInput[]
  NOT?: Prisma.master_time_slot_daysScalarWhereInput | Prisma.master_time_slot_daysScalarWhereInput[]
  id?: Prisma.IntFilter<"master_time_slot_days"> | number
  master_id?: Prisma.IntFilter<"master_time_slot_days"> | number
  weekday?: Prisma.IntFilter<"master_time_slot_days"> | number
  is_closed?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  active_status?: Prisma.BoolNullableFilter<"master_time_slot_days"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"master_time_slot_days"> | Date | string | null
}

export type master_time_slot_daysCreateWithoutMaster_time_slot_sessionsInput = {
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  master_time_slots: Prisma.master_time_slotsCreateNestedOneWithoutMaster_time_slot_daysInput
}

export type master_time_slot_daysUncheckedCreateWithoutMaster_time_slot_sessionsInput = {
  id?: number
  master_id: number
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type master_time_slot_daysCreateOrConnectWithoutMaster_time_slot_sessionsInput = {
  where: Prisma.master_time_slot_daysWhereUniqueInput
  create: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slot_sessionsInput>
}

export type master_time_slot_daysUpsertWithoutMaster_time_slot_sessionsInput = {
  update: Prisma.XOR<Prisma.master_time_slot_daysUpdateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedUpdateWithoutMaster_time_slot_sessionsInput>
  create: Prisma.XOR<Prisma.master_time_slot_daysCreateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedCreateWithoutMaster_time_slot_sessionsInput>
  where?: Prisma.master_time_slot_daysWhereInput
}

export type master_time_slot_daysUpdateToOneWithWhereWithoutMaster_time_slot_sessionsInput = {
  where?: Prisma.master_time_slot_daysWhereInput
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateWithoutMaster_time_slot_sessionsInput, Prisma.master_time_slot_daysUncheckedUpdateWithoutMaster_time_slot_sessionsInput>
}

export type master_time_slot_daysUpdateWithoutMaster_time_slot_sessionsInput = {
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  master_time_slots?: Prisma.master_time_slotsUpdateOneRequiredWithoutMaster_time_slot_daysNestedInput
}

export type master_time_slot_daysUncheckedUpdateWithoutMaster_time_slot_sessionsInput = {
  id?: Prisma.IntFieldUpdateOperationsInput | number
  master_id?: Prisma.IntFieldUpdateOperationsInput | number
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type master_time_slot_daysCreateManyMaster_time_slotsInput = {
  id?: number
  weekday: number
  is_closed?: boolean | null
  active_status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type master_time_slot_daysUpdateWithoutMaster_time_slotsInput = {
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUpdateManyWithoutMaster_time_slot_daysNestedInput
}

export type master_time_slot_daysUncheckedUpdateWithoutMaster_time_slotsInput = {
  id?: Prisma.IntFieldUpdateOperationsInput | number
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  master_time_slot_sessions?: Prisma.master_time_slot_sessionsUncheckedUpdateManyWithoutMaster_time_slot_daysNestedInput
}

export type master_time_slot_daysUncheckedUpdateManyWithoutMaster_time_slotsInput = {
  id?: Prisma.IntFieldUpdateOperationsInput | number
  weekday?: Prisma.IntFieldUpdateOperationsInput | number
  is_closed?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  active_status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}


/**
 * Count Type Master_time_slot_daysCountOutputType
 */

export type Master_time_slot_daysCountOutputType = {
  master_time_slot_sessions: number
}

export type Master_time_slot_daysCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  master_time_slot_sessions?: boolean | Master_time_slot_daysCountOutputTypeCountMaster_time_slot_sessionsArgs
}

/**
 * Master_time_slot_daysCountOutputType without action
 */
export type Master_time_slot_daysCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Master_time_slot_daysCountOutputType
   */
  select?: Prisma.Master_time_slot_daysCountOutputTypeSelect<ExtArgs> | null
}

/**
 * Master_time_slot_daysCountOutputType without action
 */
export type Master_time_slot_daysCountOutputTypeCountMaster_time_slot_sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.master_time_slot_sessionsWhereInput
}


export type master_time_slot_daysSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  master_id?: boolean
  weekday?: boolean
  is_closed?: boolean
  active_status?: boolean
  created_at?: boolean
  updated_at?: boolean
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
  master_time_slot_sessions?: boolean | Prisma.master_time_slot_days$master_time_slot_sessionsArgs<ExtArgs>
  _count?: boolean | Prisma.Master_time_slot_daysCountOutputTypeDefaultArgs<ExtArgs>
}, ExtArgs["result"]["master_time_slot_days"]>

export type master_time_slot_daysSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  master_id?: boolean
  weekday?: boolean
  is_closed?: boolean
  active_status?: boolean
  created_at?: boolean
  updated_at?: boolean
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
}, ExtArgs["result"]["master_time_slot_days"]>

export type master_time_slot_daysSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  master_id?: boolean
  weekday?: boolean
  is_closed?: boolean
  active_status?: boolean
  created_at?: boolean
  updated_at?: boolean
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
}, ExtArgs["result"]["master_time_slot_days"]>

export type master_time_slot_daysSelectScalar = {
  id?: boolean
  master_id?: boolean
  weekday?: boolean
  is_closed?: boolean
  active_status?: boolean
  created_at?: boolean
  updated_at?: boolean
}

export type master_time_slot_daysOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "master_id" | "weekday" | "is_closed" | "active_status" | "created_at" | "updated_at", ExtArgs["result"]["master_time_slot_days"]>
export type master_time_slot_daysInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
  master_time_slot_sessions?: boolean | Prisma.master_time_slot_days$master_time_slot_sessionsArgs<ExtArgs>
  _count?: boolean | Prisma.Master_time_slot_daysCountOutputTypeDefaultArgs<ExtArgs>
}
export type master_time_slot_daysIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
}
export type master_time_slot_daysIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  master_time_slots?: boolean | Prisma.master_time_slotsDefaultArgs<ExtArgs>
}

export type $master_time_slot_daysPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "master_time_slot_days"
  objects: {
    master_time_slots: Prisma.$master_time_slotsPayload<ExtArgs>
    master_time_slot_sessions: Prisma.$master_time_slot_sessionsPayload<ExtArgs>[]
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: number
    master_id: number
    weekday: number
    is_closed: boolean | null
    active_status: boolean | null
    created_at: Date | null
    updated_at: Date | null
  }, ExtArgs["result"]["master_time_slot_days"]>
  composites: {}
}

export type master_time_slot_daysGetPayload<S extends boolean | null | undefined | master_time_slot_daysDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload, S>

export type master_time_slot_daysCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
  Omit<master_time_slot_daysFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
    select?: Master_time_slot_daysCountAggregateInputType | true
  }

export interface master_time_slot_daysDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
  [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['master_time_slot_days'], meta: { name: 'master_time_slot_days' } }
  /**
   * Find zero or one Master_time_slot_days that matches the filter.
   * @param {master_time_slot_daysFindUniqueArgs} args - Arguments to find a Master_time_slot_days
   * @example
   * // Get one Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findUnique({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUnique<T extends master_time_slot_daysFindUniqueArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysFindUniqueArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find one Master_time_slot_days that matches the filter or throw an error with `error.code='P2025'`
   * if no matches were found.
   * @param {master_time_slot_daysFindUniqueOrThrowArgs} args - Arguments to find a Master_time_slot_days
   * @example
   * // Get one Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findUniqueOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUniqueOrThrow<T extends master_time_slot_daysFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first Master_time_slot_days that matches the filter.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysFindFirstArgs} args - Arguments to find a Master_time_slot_days
   * @example
   * // Get one Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findFirst({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirst<T extends master_time_slot_daysFindFirstArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysFindFirstArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first Master_time_slot_days that matches the filter or
   * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysFindFirstOrThrowArgs} args - Arguments to find a Master_time_slot_days
   * @example
   * // Get one Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findFirstOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirstOrThrow<T extends master_time_slot_daysFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find zero or more Master_time_slot_days that matches the filter.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysFindManyArgs} args - Arguments to filter and select certain fields only.
   * @example
   * // Get all Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findMany()
   * 
   * // Get first 10 Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.findMany({ take: 10 })
   * 
   * // Only select the `id`
   * const master_time_slot_daysWithIdOnly = await prisma.master_time_slot_days.findMany({ select: { id: true } })
   * 
   */
  findMany<T extends master_time_slot_daysFindManyArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>

  /**
   * Create a Master_time_slot_days.
   * @param {master_time_slot_daysCreateArgs} args - Arguments to create a Master_time_slot_days.
   * @example
   * // Create one Master_time_slot_days
   * const Master_time_slot_days = await prisma.master_time_slot_days.create({
   *   data: {
   *     // ... data to create a Master_time_slot_days
   *   }
   * })
   * 
   */
  create<T extends master_time_slot_daysCreateArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysCreateArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Create many Master_time_slot_days.
   * @param {master_time_slot_daysCreateManyArgs} args - Arguments to create many Master_time_slot_days.
   * @example
   * // Create many Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.createMany({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   *     
   */
  createMany<T extends master_time_slot_daysCreateManyArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Create many Master_time_slot_days and returns the data saved in the database.
   * @param {master_time_slot_daysCreateManyAndReturnArgs} args - Arguments to create many Master_time_slot_days.
   * @example
   * // Create many Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.createManyAndReturn({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Create many Master_time_slot_days and only return the `id`
   * const master_time_slot_daysWithIdOnly = await prisma.master_time_slot_days.createManyAndReturn({
   *   select: { id: true },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * 
   */
  createManyAndReturn<T extends master_time_slot_daysCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>

  /**
   * Delete a Master_time_slot_days.
   * @param {master_time_slot_daysDeleteArgs} args - Arguments to delete one Master_time_slot_days.
   * @example
   * // Delete one Master_time_slot_days
   * const Master_time_slot_days = await prisma.master_time_slot_days.delete({
   *   where: {
   *     // ... filter to delete one Master_time_slot_days
   *   }
   * })
   * 
   */
  delete<T extends master_time_slot_daysDeleteArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysDeleteArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Update one Master_time_slot_days.
   * @param {master_time_slot_daysUpdateArgs} args - Arguments to update one Master_time_slot_days.
   * @example
   * // Update one Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.update({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  update<T extends master_time_slot_daysUpdateArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysUpdateArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Delete zero or more Master_time_slot_days.
   * @param {master_time_slot_daysDeleteManyArgs} args - Arguments to filter Master_time_slot_days to delete.
   * @example
   * // Delete a few Master_time_slot_days
   * const { count } = await prisma.master_time_slot_days.deleteMany({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   * 
   */
  deleteMany<T extends master_time_slot_daysDeleteManyArgs>(args?: Prisma.SelectSubset<T, master_time_slot_daysDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more Master_time_slot_days.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysUpdateManyArgs} args - Arguments to update one or more rows.
   * @example
   * // Update many Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.updateMany({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  updateMany<T extends master_time_slot_daysUpdateManyArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more Master_time_slot_days and returns the data updated in the database.
   * @param {master_time_slot_daysUpdateManyAndReturnArgs} args - Arguments to update many Master_time_slot_days.
   * @example
   * // Update many Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.updateManyAndReturn({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Update zero or more Master_time_slot_days and only return the `id`
   * const master_time_slot_daysWithIdOnly = await prisma.master_time_slot_days.updateManyAndReturn({
   *   select: { id: true },
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * 
   */
  updateManyAndReturn<T extends master_time_slot_daysUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>

  /**
   * Create or update one Master_time_slot_days.
   * @param {master_time_slot_daysUpsertArgs} args - Arguments to update or create a Master_time_slot_days.
   * @example
   * // Update or create a Master_time_slot_days
   * const master_time_slot_days = await prisma.master_time_slot_days.upsert({
   *   create: {
   *     // ... data to create a Master_time_slot_days
   *   },
   *   update: {
   *     // ... in case it already exists, update
   *   },
   *   where: {
   *     // ... the filter for the Master_time_slot_days we want to update
   *   }
   * })
   */
  upsert<T extends master_time_slot_daysUpsertArgs>(args: Prisma.SelectSubset<T, master_time_slot_daysUpsertArgs<ExtArgs>>): Prisma.Prisma__master_time_slot_daysClient<runtime.Types.Result.GetResult<Prisma.$master_time_slot_daysPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>


  /**
   * Count the number of Master_time_slot_days.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysCountArgs} args - Arguments to filter Master_time_slot_days to count.
   * @example
   * // Count the number of Master_time_slot_days
   * const count = await prisma.master_time_slot_days.count({
   *   where: {
   *     // ... the filter for the Master_time_slot_days we want to count
   *   }
   * })
  **/
  count<T extends master_time_slot_daysCountArgs>(
    args?: Prisma.Subset<T, master_time_slot_daysCountArgs>,
  ): Prisma.PrismaPromise<
    T extends runtime.Types.Utils.Record<'select', any>
      ? T['select'] extends true
        ? number
        : Prisma.GetScalarType<T['select'], Master_time_slot_daysCountAggregateOutputType>
      : number
  >

  /**
   * Allows you to perform aggregations operations on a Master_time_slot_days.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {Master_time_slot_daysAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
   * @example
   * // Ordered by age ascending
   * // Where email contains prisma.io
   * // Limited to the 10 users
   * const aggregations = await prisma.user.aggregate({
   *   _avg: {
   *     age: true,
   *   },
   *   where: {
   *     email: {
   *       contains: "prisma.io",
   *     },
   *   },
   *   orderBy: {
   *     age: "asc",
   *   },
   *   take: 10,
   * })
  **/
  aggregate<T extends Master_time_slot_daysAggregateArgs>(args: Prisma.Subset<T, Master_time_slot_daysAggregateArgs>): Prisma.PrismaPromise<GetMaster_time_slot_daysAggregateType<T>>

  /**
   * Group by Master_time_slot_days.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {master_time_slot_daysGroupByArgs} args - Group by arguments.
   * @example
   * // Group by city, order by createdAt, get count
   * const result = await prisma.user.groupBy({
   *   by: ['city', 'createdAt'],
   *   orderBy: {
   *     createdAt: true
   *   },
   *   _count: {
   *     _all: true
   *   },
   * })
   * 
  **/
  groupBy<
    T extends master_time_slot_daysGroupByArgs,
    HasSelectOrTake extends Prisma.Or<
      Prisma.Extends<'skip', Prisma.Keys<T>>,
      Prisma.Extends<'take', Prisma.Keys<T>>
    >,
    OrderByArg extends Prisma.True extends HasSelectOrTake
      ? { orderBy: master_time_slot_daysGroupByArgs['orderBy'] }
      : { orderBy?: master_time_slot_daysGroupByArgs['orderBy'] },
    OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
    ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
    ByValid extends Prisma.Has<ByFields, OrderFields>,
    HavingFields extends Prisma.GetHavingFields<T['having']>,
    HavingValid extends Prisma.Has<ByFields, HavingFields>,
    ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
    InputErrors extends ByEmpty extends Prisma.True
    ? `Error: "by" must not be empty.`
    : HavingValid extends Prisma.False
    ? {
        [P in HavingFields]: P extends ByFields
          ? never
          : P extends string
          ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
          : [
              Error,
              'Field ',
              P,
              ` in "having" needs to be provided in "by"`,
            ]
      }[HavingFields]
    : 'take' extends Prisma.Keys<T>
    ? 'orderBy' extends Prisma.Keys<T>
      ? ByValid extends Prisma.True
        ? {}
        : {
            [P in OrderFields]: P extends ByFields
              ? never
              : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
          }[OrderFields]
      : 'Error: If you provide "take", you also need to provide "orderBy"'
    : 'skip' extends Prisma.Keys<T>
    ? 'orderBy' extends Prisma.Keys<T>
      ? ByValid extends Prisma.True
        ? {}
        : {
            [P in OrderFields]: P extends ByFields
              ? never
              : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
          }[OrderFields]
      : 'Error: If you provide "skip", you also need to provide "orderBy"'
    : ByValid extends Prisma.True
    ? {}
    : {
        [P in OrderFields]: P extends ByFields
          ? never
          : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
      }[OrderFields]
  >(args: Prisma.SubsetIntersection<T, master_time_slot_daysGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMaster_time_slot_daysGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
/**
 * Fields of the master_time_slot_days model
 */
readonly fields: master_time_slot_daysFieldRefs;
}

/**
 * The delegate class that acts as a "Promise-like" for master_time_slot_days.
 * Why is this prefixed with `Prisma__`?
 * Because we want to prevent naming conflicts as mentioned in
 * https://github.com/prisma/prisma-client-js/issues/707
 */
export interface Prisma__master_time_slot_daysClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
  readonly [Symbol.toStringTag]: "PrismaPromise"
  master_time_slots<T extends Prisma.master_time_slotsDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.master_time_slotsDefaultArgs<ExtArgs>>): Prisma.Prisma__master_time_slotsClient<runtime.Types.Result.GetResult<Prisma.$master_time_slotsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
  master_time_slot_sessions<T extends Prisma.master_time_slot_days$master_time_slot_sessionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.master_time_slot_days$master_time_slot_sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$master_time_slot_sessionsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  /**
   * Attaches callbacks for the resolution and/or rejection of the Promise.
   * @param onfulfilled The callback to execute when the Promise is resolved.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of which ever callback is executed.
   */
  then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
  /**
   * Attaches a callback for only the rejection of the Promise.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of the callback.
   */
  catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
  /**
   * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
   * resolved value cannot be modified from the callback.
   * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
   * @returns A Promise for the completion of the callback.
   */
  finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
}




/**
 * Fields of the master_time_slot_days model
 */
export interface master_time_slot_daysFieldRefs {
  readonly id: Prisma.FieldRef<"master_time_slot_days", 'Int'>
  readonly master_id: Prisma.FieldRef<"master_time_slot_days", 'Int'>
  readonly weekday: Prisma.FieldRef<"master_time_slot_days", 'Int'>
  readonly is_closed: Prisma.FieldRef<"master_time_slot_days", 'Boolean'>
  readonly active_status: Prisma.FieldRef<"master_time_slot_days", 'Boolean'>
  readonly created_at: Prisma.FieldRef<"master_time_slot_days", 'DateTime'>
  readonly updated_at: Prisma.FieldRef<"master_time_slot_days", 'DateTime'>
}
    

// Custom InputTypes
/**
 * master_time_slot_days findUnique
 */
export type master_time_slot_daysFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter, which master_time_slot_days to fetch.
   */
  where: Prisma.master_time_slot_daysWhereUniqueInput
}

/**
 * master_time_slot_days findUniqueOrThrow
 */
export type master_time_slot_daysFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter, which master_time_slot_days to fetch.
   */
  where: Prisma.master_time_slot_daysWhereUniqueInput
}

/**
 * master_time_slot_days findFirst
 */
export type master_time_slot_daysFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter, which master_time_slot_days to fetch.
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of master_time_slot_days to fetch.
   */
  orderBy?: Prisma.master_time_slot_daysOrderByWithRelationInput | Prisma.master_time_slot_daysOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for master_time_slot_days.
   */
  cursor?: Prisma.master_time_slot_daysWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` master_time_slot_days from the position of the cursor.
   */
  take?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Skip the first `n` master_time_slot_days.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of master_time_slot_days.
   */
  distinct?: Prisma.Master_time_slot_daysScalarFieldEnum | Prisma.Master_time_slot_daysScalarFieldEnum[]
}

/**
 * master_time_slot_days findFirstOrThrow
 */
export type master_time_slot_daysFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter, which master_time_slot_days to fetch.
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of master_time_slot_days to fetch.
   */
  orderBy?: Prisma.master_time_slot_daysOrderByWithRelationInput | Prisma.master_time_slot_daysOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for master_time_slot_days.
   */
  cursor?: Prisma.master_time_slot_daysWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` master_time_slot_days from the position of the cursor.
   */
  take?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Skip the first `n` master_time_slot_days.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of master_time_slot_days.
   */
  distinct?: Prisma.Master_time_slot_daysScalarFieldEnum | Prisma.Master_time_slot_daysScalarFieldEnum[]
}

/**
 * master_time_slot_days findMany
 */
export type master_time_slot_daysFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter, which master_time_slot_days to fetch.
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of master_time_slot_days to fetch.
   */
  orderBy?: Prisma.master_time_slot_daysOrderByWithRelationInput | Prisma.master_time_slot_daysOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for listing master_time_slot_days.
   */
  cursor?: Prisma.master_time_slot_daysWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` master_time_slot_days from the position of the cursor.
   */
  take?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Skip the first `n` master_time_slot_days.
   */
  skip?: number
  distinct?: Prisma.Master_time_slot_daysScalarFieldEnum | Prisma.Master_time_slot_daysScalarFieldEnum[]
}

/**
 * master_time_slot_days create
 */
export type master_time_slot_daysCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * The data needed to create a master_time_slot_days.
   */
  data: Prisma.XOR<Prisma.master_time_slot_daysCreateInput, Prisma.master_time_slot_daysUncheckedCreateInput>
}

/**
 * master_time_slot_days createMany
 */
export type master_time_slot_daysCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to create many master_time_slot_days.
   */
  data: Prisma.master_time_slot_daysCreateManyInput | Prisma.master_time_slot_daysCreateManyInput[]
  skipDuplicates?: boolean
}

/**
 * master_time_slot_days createManyAndReturn
 */
export type master_time_slot_daysCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelectCreateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * The data used to create many master_time_slot_days.
   */
  data: Prisma.master_time_slot_daysCreateManyInput | Prisma.master_time_slot_daysCreateManyInput[]
  skipDuplicates?: boolean
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysIncludeCreateManyAndReturn<ExtArgs> | null
}

/**
 * master_time_slot_days update
 */
export type master_time_slot_daysUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * The data needed to update a master_time_slot_days.
   */
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateInput, Prisma.master_time_slot_daysUncheckedUpdateInput>
  /**
   * Choose, which master_time_slot_days to update.
   */
  where: Prisma.master_time_slot_daysWhereUniqueInput
}

/**
 * master_time_slot_days updateMany
 */
export type master_time_slot_daysUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update master_time_slot_days.
   */
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateManyMutationInput, Prisma.master_time_slot_daysUncheckedUpdateManyInput>
  /**
   * Filter which master_time_slot_days to update
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * Limit how many master_time_slot_days to update.
   */
  limit?: number
}

/**
 * master_time_slot_days updateManyAndReturn
 */
export type master_time_slot_daysUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * The data used to update master_time_slot_days.
   */
  data: Prisma.XOR<Prisma.master_time_slot_daysUpdateManyMutationInput, Prisma.master_time_slot_daysUncheckedUpdateManyInput>
  /**
   * Filter which master_time_slot_days to update
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * Limit how many master_time_slot_days to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * master_time_slot_days upsert
 */
export type master_time_slot_daysUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * The filter to search for the master_time_slot_days to update in case it exists.
   */
  where: Prisma.master_time_slot_daysWhereUniqueInput
  /**
   * In case the master_time_slot_days found by the `where` argument doesn't exist, create a new master_time_slot_days with this data.
   */
  create: Prisma.XOR<Prisma.master_time_slot_daysCreateInput, Prisma.master_time_slot_daysUncheckedCreateInput>
  /**
   * In case the master_time_slot_days was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.master_time_slot_daysUpdateInput, Prisma.master_time_slot_daysUncheckedUpdateInput>
}

/**
 * master_time_slot_days delete
 */
export type master_time_slot_daysDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
  /**
   * Filter which master_time_slot_days to delete.
   */
  where: Prisma.master_time_slot_daysWhereUniqueInput
}

/**
 * master_time_slot_days deleteMany
 */
export type master_time_slot_daysDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which master_time_slot_days to delete
   */
  where?: Prisma.master_time_slot_daysWhereInput
  /**
   * Limit how many master_time_slot_days to delete.
   */
  limit?: number
}

/**
 * master_time_slot_days.master_time_slot_sessions
 */
export type master_time_slot_days$master_time_slot_sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_sessions
   */
  select?: Prisma.master_time_slot_sessionsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_sessions
   */
  omit?: Prisma.master_time_slot_sessionsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_sessionsInclude<ExtArgs> | null
  where?: Prisma.master_time_slot_sessionsWhereInput
  orderBy?: Prisma.master_time_slot_sessionsOrderByWithRelationInput | Prisma.master_time_slot_sessionsOrderByWithRelationInput[]
  cursor?: Prisma.master_time_slot_sessionsWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.Master_time_slot_sessionsScalarFieldEnum | Prisma.Master_time_slot_sessionsScalarFieldEnum[]
}

/**
 * master_time_slot_days without action
 */
export type master_time_slot_daysDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the master_time_slot_days
   */
  select?: Prisma.master_time_slot_daysSelect<ExtArgs> | null
  /**
   * Omit specific fields from the master_time_slot_days
   */
  omit?: Prisma.master_time_slot_daysOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.master_time_slot_daysInclude<ExtArgs> | null
}
