Skip to content
Snippets Groups Projects
Select Git revision
  • 22c61bd86cbcb0b1b5ba72642daf72ff95cd5f8c
  • main default protected
  • release
  • master-interface-proto4
  • ozg-5634-ozgcloud-ingress
  • OZG-3322_connect_to_mongodb_over_tls
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.0
  • 2.11.0
  • 2.10.1
  • 2.10.0
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.1
  • 2.5.0
  • 2.4.0
  • 2.3.0
26 results

run_helm_test.sh

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 { }