/** *
A field-level encryption content type profile.
*/ export interface _ContentTypeProfile { /** *The format for a field-level encryption content type-profile mapping.
*/ Format: "URLEncoded" | string; /** *The profile ID for a field-level encryption content type-profile mapping.
*/ ProfileId?: string; /** *The content type for a field-level encryption content type-profile mapping.
*/ ContentType: string; } export declare type _UnmarshalledContentTypeProfile = _ContentTypeProfile;