Skip to content
Snippets Groups Projects
Select Git revision
  • e118e4c785b769d8b179c13533bea3a3ced43c9a
  • master default protected
  • add-frequency-to-form
  • dev protected
  • ckan-2.11.0
  • add-package-custom-fields
  • fix-adding-datasets-for-users-and-editors
  • add-auth-subroute
  • 71-migrate-custom-fields-to-ckanext-scheming
  • add-author-maintainer-information
  • fix-inline-flex-btns
  • fix-known-spatial-uri-validation
  • py3
  • 47-aktuelle-resource-einer-collection-wird-nicht-mehr-gefunden
  • 10-eingabe-der-dct-accrualperiodicity-in-weboberflache
  • v1.3
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.3
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.1
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
36 results

autocomplete.js

Blame
  • postfach.model.ts 1020 B
    import { CreateCommand } from '@goofy-client/command-shared';
    import { ListResource } from '@goofy-client/tech-shared';
    import { Resource, ResourceUri } from '@ngxp/rest';
    import { PostfachNachrichtMessageCode } from './postfach.message-code';
    
    export interface PostfachMail {
    	subject: string;
    	createdAt: Date;
    	direction: Direction;
    	mailBody: string;
    	replyOption: ReplyOption;
    	sentAt: Date;
    	sentSuccessful: boolean;
    	messageCode: PostfachNachrichtMessageCode;
    	attachments: ResourceUri[];
    }
    
    export enum Direction {
    	IN = 'IN',
    	OUT = 'OUT'
    }
    
    export enum ReplyOption {
    	POSSIBLE = 'POSSIBLE',
    	MANDATORY = 'MANDATORY',
    	FORBIDDEN = 'FORBIDDEN'
    }
    
    export enum PostfachOrder {
    	SEND_POSTFACH_NACHRICHT = 'SEND_POSTFACH_NACHRICHT',
    	RESEND_POSTFACH_MAIL = 'RESEND_POSTFACH_MAIL'
    }
    
    export interface CreatePostfachMailCommand extends CreateCommand {
    	order: PostfachOrder;
    }
    
    export interface PostfachMailResource extends Resource, PostfachMail { }
    
    export interface PostfachMailListResource extends ListResource { }