mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
import { PatchAction } from '@/models/PatchAction'
|
|
import { PatchHostnameRequest } from './PatchHostnameRequest'
|
|
|
|
export interface PatchAccountRequest {
|
|
description?: PatchAction<string>
|
|
isDisabled?: PatchAction<boolean>
|
|
contacts?: PatchAction<string>[]
|
|
hostnames?: PatchHostnameRequest[]
|
|
}
|